Source Code
Overview
ETH Balance
0 ETH
More Info
ContractCreator
TokenTracker
Multichain Info
N/A
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Dev Mint | 5355216 | 9 days ago | IN | 0 ETH | 0.0000059 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
5355216 | 9 days ago | 0 ETH | ||||
5355216 | 9 days ago | 0 ETH | ||||
5355216 | 9 days ago | 0 ETH | ||||
5355216 | 9 days ago | 0 ETH | ||||
5355216 | 9 days ago | 0 ETH | ||||
5355216 | 9 days ago | 0 ETH | ||||
5355216 | 9 days ago | 0 ETH | ||||
5355216 | 9 days ago | 0 ETH | ||||
5355216 | 9 days ago | 0 ETH | ||||
5355216 | 9 days ago | 0 ETH | ||||
5355216 | 9 days ago | 0 ETH | ||||
5355216 | 9 days ago | 0 ETH | ||||
5355216 | 9 days ago | 0 ETH | ||||
5355216 | 9 days ago | 0 ETH | ||||
5355216 | 9 days ago | 0 ETH | ||||
5355216 | 9 days ago | 0 ETH | ||||
5355216 | 9 days ago | 0 ETH | ||||
5355216 | 9 days ago | 0 ETH | ||||
5355216 | 9 days ago | 0 ETH | ||||
5355216 | 9 days ago | 0 ETH | ||||
5355216 | 9 days ago | 0 ETH | ||||
5355216 | 9 days ago | 0 ETH | ||||
5355216 | 9 days ago | 0 ETH | ||||
5355216 | 9 days ago | 0 ETH | ||||
5355216 | 9 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:
DogTest
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 DogTest is ERC721A, Ownable, DogData, ReentrancyGuard { address public deployer; bytes32 private lastBlockHash; uint256 private lastBlockNumber; address public dogBarkAddress; /// Mint Settings uint public maxSupply = 2500; uint public mintPrice = 0.003 ether; bool public mintEnabled = false; /// Mint Rules uint public maxMintPerTrans = 100; uint public maxMintPerWallet = 100; /// Whitelist Settings mapping(address => uint) public mintAmount; mapping(address => bool) public whiteListed; /// Whitelist setup address public listController; modifier onlylistController() { require(msg.sender == listController, "Controller Only"); _; } constructor(address _dogBarkAddress) ERC721A("Pocket Dogs", "POKEDOGS") { lastBlockHash = blockhash(block.number - 1); lastBlockNumber = block.number; deployer = msg.sender; dogBarkAddress = _dogBarkAddress; _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"); // Check if the mint quantity exceeds the per wallet limit uint256 totalMintedByWallet = mintAmount[msg.sender] + quantity; require(totalMintedByWallet <= maxMintPerWallet, "Exceeds max mint per wallet"); mintAmount[msg.sender] = mintAmount[msg.sender] + totalMintedByWallet; // Start minting _internalMint(quantity); } function _internalMint(uint256 quantity) internal { require(_totalMinted() + quantity <= maxSupply, "Sold Out!"); // What token do we start minting with? uint startTokenID = _startTokenId() + _totalMinted(); uint mintUntilTokenID = quantity + startTokenID; for(uint256 tokenId = startTokenID; tokenId < mintUntilTokenID; tokenId++) { /// got 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": "Pocket Dogs #', Strings.toString(tokenId), '",', '"description": "Fully Onchain Pocket Dogs 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)); } // Updated to use the DogBark contract address 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(); return Base64.encode(bytes( string( abi.encodePacked( '<html><head><style>', '#dogContainer{cursor:pointer;width:100%;height:100%;max-width:629;max-height:629;display:block;overflow:hidden;}', '#dog{transition:transform 0.5s;}', '#dog:hover{transform:scale(1.1);}', '</style></head><body>', '<svg xmlns="http://www.w3.org/2000/svg" id="dogContainer" viewBox="0 0 16 16" width="629" height="629" shape-rendering="crispEdges">', '<rect id="background" width="16" height="16" fill="#01CA6A"/>', '<g id="dog">', _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.getElementById("dogContainer").addEventListener("click",function(){', 'document.getElementById("dog").style.transform = "scale(1.1)";', 'setTimeout(()=>{document.getElementById("dog").style.transform = "scale(1)";}, 500);', 'document.getElementById("barkSound").play();', '});', '</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="16" height="16" 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) external onlylistController nonReentrant { for (uint i = 0; i < addresses.length; i++) { whiteListed[addresses[i]] = true; } } 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 // 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 // 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 (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[]"}],"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":"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":[],"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":"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":"whiteListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
9c4d535b000000000000000000000000000000000000000000000000000000000000000001000dbfc3babb7bc1c192435c1e5300986c0007406deb4bc4f5ddab057761a5000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000200000000000000000000000006f757468b2030d957fbecaaebf66a3fc50694ea3
Deployed Bytecode
0x00040000000000020020000000000002000000600310027000000bb2043001970003000000410355000200000001035500000bb20030019d0000008003000039000000400030043f0000000100200190000000300000c13d000000040040008c000000540000413d000000000201043b000000e00220027000000cf40020009c000000560000213d00000d0e0020009c000000a70000213d00000d1b0020009c0000012a0000a13d00000d1c0020009c000001cf0000a13d00000d1d0020009c0000043a0000613d00000d1e0020009c000003ed0000613d00000d1f0020009c000000540000c13d000000240040008c000000540000413d0000000001000416000000000001004b000000540000c13d0000000901000039000000000101041a00000bb5011001970000000002000411000000000021004b000000000100003900000001010060392ec520240000040f00000004010000390000000201100367000000000101043b2ec524e90000040f000000000100001900002ec60001042e0000000002000416000000000002004b000000540000c13d0000001f0240003900000bb3022001970000008002200039000000400020043f0000001f0540018f00000bb4064001980000008002600039000000400000613d000000000701034f000000007807043c0000000003830436000000000023004b0000003c0000c13d000000000005004b0000004d0000613d000000000161034f0000000303500210000000000502043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f0000000000120435002000200000003d000000200040008c000000540000413d000000800100043d001f00000001001d00000bb50010009c000000f50000a13d000000000100001900002ec70001043000000cf50020009c000001100000213d00000d020020009c0000013c0000a13d00000d030020009c000001de0000a13d00000d040020009c0000043f0000613d00000d050020009c000003f60000613d00000d060020009c000000540000c13d000000840040008c000000540000413d0000000402100370000000000502043b00000bb50050009c000000540000213d0000002402100370000000000202043b00000bb50020009c000000540000213d0000006403100370000000000603043b00000bb90060009c000000540000213d0000002303600039000000000043004b000000540000813d0000000407600039000000000371034f000000000303043b00000bb90030009c0000010a0000213d0000001f0930003900000d91099001970000003f0990003900000d910990019700000cbc0090009c0000010a0000213d0000008009900039000000400090043f000000800030043f00000000063600190000002406600039000000000046004b000000540000213d0000002004700039000000000641034f00000d91073001980000001f0830018f000000a004700039000000910000613d000000a009000039000000000a06034f00000000ab0a043c0000000009b90436000000000049004b0000008d0000c13d000000000008004b0000009e0000613d000000000676034f0000000307800210000000000804043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000640435000000a00330003900000000000304350000004401100370000000000301043b000000800400003900000000010500192ec522e10000040f000000000100001900002ec60001042e00000d0f0020009c000001470000a13d00000d100020009c000001e70000a13d00000d110020009c000004470000613d00000d120020009c000004040000613d00000d130020009c000000540000c13d000000240040008c000000540000413d0000000002000416000000000002004b000000540000c13d0000000402100370000000000202043b00000bb90020009c000000540000213d0000002303200039000000000043004b000000540000813d0000000403200039000000000131034f000000000101043b001200000001001d00000bb90010009c000000540000213d001100240020003d000000120100002900000005011002100000001101100029000000000041004b000000540000213d0000002a01000039000000000101041a00000bb5011001970000000002000411000000000012004b000007c90000c13d0000001e01000039000000000201041a000000020020008c000002680000613d0000000202000039000000000021041b000000120000006b000007df0000613d0000000002000019001300000002001d000000050120021000000011011000290000000201100367000000000101043b00000bb50010009c000000540000213d000000000010043f0000002901000039000000200010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000d38011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000000101043b000000000201041a00000d920220019700000001022001bf000000000021041b00000013020000290000000102200039000000120020006c000000d80000413d000007df0000013d000000400300043d00000bb60030009c0000010a0000213d0000004001300039000000400010043f0000000b01000039000000000513043600000bb7010000410000000000150435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f0000000802000039000000000221043600000bb8040000410000000000420435000000000403043300000bb90040009c0000020f0000a13d00000d4701000041000000000010043f0000004101000039000000040010043f00000d480100004100002ec70001043000000cf60020009c0000015b0000a13d00000cf70020009c000001f00000a13d00000cf80020009c000004560000613d00000cf90020009c0000041d0000613d00000cfa0020009c000000540000c13d000000240040008c000000540000413d0000000002000416000000000002004b000000540000c13d0000000401100370000000000101043b00000bb50010009c000000540000213d000000000010043f0000002901000039000000200010043f000000400200003900000000010000192ec52e8f0000040f000001650000013d00000d220020009c0000016c0000213d00000d250020009c000002340000613d00000d260020009c000000540000c13d000000240040008c000000540000413d0000000002000416000000000002004b000000540000c13d0000000401100370000000000101043b00000bb50010009c000000540000213d000000000010043f0000002801000039000003ff0000013d00000d090020009c000001930000213d00000d0c0020009c000002480000613d00000d0d0020009c000000540000c13d0000000001000416000000000001004b000000540000c13d0000000901000039000003f10000013d00000d160020009c000001a90000213d00000d190020009c0000025b0000613d00000d1a0020009c000000540000c13d000000240040008c000000540000413d0000000002000416000000000002004b000000540000c13d0000000401100370000000000101043b2ec520450000040f0000002002000039000000400300043d001300000003001d00000000022304362ec51ecb0000040f0000047e0000013d00000cfd0020009c000001c60000213d00000d000020009c000002720000613d00000d010020009c000000540000c13d0000000001000416000000000001004b000000540000c13d0000002501000039000000000101041a000000ff001001900000000001000039000000010100c039000000800010043f00000d270100004100002ec60001042e00000d230020009c000003150000613d00000d240020009c000000540000c13d000000240040008c000000540000413d0000000002000416000000000002004b000000540000c13d0000000401100370000000000201043b000000000002004b0000064f0000613d000000000100041a000000000021004b0000064f0000a13d001200000002001d001300000002001d000000000020043f0000000401000039000000200010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000d38011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000000101043b000000000101041a000000000001004b000006440000c13d0000001302000029000000000002004b000000010220008a0000017d0000c13d00000abf0000013d00000d0a0020009c000003340000613d00000d0b0020009c000000540000c13d000000240040008c000000540000413d0000000401100370000000000401043b0000002501000039000000000101041a000000ff00100190000004f30000c13d00000d2801000041000000800010043f0000002001000039000000840010043f0000001201000039000000a40010043f00000d8001000041000000c40010043f00000d7d0100004100002ec70001043000000d170020009c000003530000613d00000d180020009c000000540000c13d000000240040008c000000540000413d0000000002000416000000000002004b000000540000c13d0000000401100370000000000101043b001300000001001d00000bb50010009c000000540000213d0000000901000039000000000101041a00000bb5011001970000000002000411000000000021004b000000000100003900000001010060392ec520240000040f0000002a01000039000000000201041a00000bc00220019700000013022001af000000000021041b000000000100001900002ec60001042e00000cfe0020009c000003630000613d00000cff0020009c000000540000c13d0000000001000416000000000001004b000000540000c13d0000001f01000039000003f10000013d00000d200020009c000003680000613d00000d210020009c000000540000c13d0000000001000416000000000001004b000000540000c13d0000000101000039000000000101041a00000d9301100167000000000200041a0000000001120019000000800010043f00000d270100004100002ec60001042e00000d070020009c000003770000613d00000d080020009c000000540000c13d0000000001000416000000000001004b000000540000c13d0000002201000039000003f10000013d00000d140020009c000003bd0000613d00000d150020009c000000540000c13d0000000001000416000000000001004b000000540000c13d0000002401000039000004430000013d00000cfb0020009c000003cd0000613d00000cfc0020009c000000540000c13d000000440040008c000000540000413d0000000002000416000000000002004b000000540000c13d0000000402100370000000000202043b00000bb50020009c000000540000213d0000002401100370000000000101043b001300000001001d00000bb50010009c000000540000213d000000000020043f0000000701000039000000200010043f000000400200003900000000010000192ec52e8f0000040f00000013020000292ec51ebb0000040f000000000101041a000000ff001001900000000001000039000000010100c039000003c60000013d0000000206000039000000000606041a000000010760019000000001066002700000007f0660618f0000001f0060008c00000000080000390000000108002039000000000087004b000005330000c13d000000200060008c0000022b0000413d0000000207000039000000000070043f0000001f07400039000000050770027000000bba0770009a000000200040008c00000bbb070040410000001f06600039000000050660027000000bba0660009a000000000067004b0000022b0000813d000000000007041b0000000107700039000000000067004b000002270000413d0000001f0040008c000004670000a13d0000000205000039000000000050043f00000d91074001980000050b0000c13d000000200600003900000bbb05000041000005170000013d000000240040008c000000540000413d0000000002000416000000000002004b000000540000c13d0000000401100370000000000201043b00000d8c00200198000000540000c13d000000010100003900000d8d0220019700000d8e0020009c0000045b0000613d00000d8f0020009c0000045b0000613d00000d900020009c000000000100c019000000800010043f00000d270100004100002ec60001042e0000000001000416000000000001004b000000540000c13d0000000901000039000000000101041a00000bb5011001970000000002000411000000000021004b000000000100003900000001010060392ec520240000040f0000002501000039000000000201041a00000d9203200197000000ff0020019000000001033061bf000000000031041b000000000100001900002ec60001042e0000000001000416000000000001004b000000540000c13d0000000901000039000000000101041a00000bb5011001970000000002000411000000000021004b0000045e0000c13d0000001e01000039000000000201041a000000020020008c000005540000c13d00000d2801000041000000800010043f0000002001000039000000840010043f0000001f01000039000000a40010043f00000d8701000041000000c40010043f00000d7d0100004100002ec700010430000000240040008c000000540000413d0000000002000416000000000002004b000000540000c13d0000000401100370000000000101043b001300000001001d2ec520450000040f000000400300043d0000000002010433000000000002004b000004880000c13d00000c5a0030009c0000010a0000213d00000000040300190000002001300039000000400010043f0000000000030435001400000004001d0000001303000029000000000003004b000005da0000c13d001100000004001d000000400100043d001200000001001d00000bb60010009c0000010a0000213d00000012030000290000004001300039000000400010043f000000200130003900000d37020000410000000000210435000000010100003900000000001304350000001301000029000000000010043f0000000a01000039000000200010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000d38011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000400200043d00000d390020009c0000010a0000213d000000000701043b000000c001200039000000400010043f000000000107041a00000000061204360000000103700039000000000303041a00000000003604350000000203700039000000000303041a000000400520003900000000003504350000000303700039000000000303041a000000600420003900000000003404350000000403700039000000000803041a00000080032000390000000000830435000000a0022000390000000507700039000000000707041a00000000007204350000000d07000039000000000807041a000000000018004b0000001108000029000014b00000a13d000000000070043f00000000090604330000001006000039000000000706041a001000000009001d000000000097004b000014b00000a13d000000000060043f00000000070504330000001305000039000000000605041a000f00000007001d000000000076004b000014b00000a13d000000000050043f00000000060404330000001604000039000000000504041a000e00000006001d000000000065004b000014b00000a13d000000000040043f00000000050304330000001903000039000000000403041a000d00000005001d000000000054004b000014b00000a13d000000000030043f00000000040204330000001c02000039000000000302041a000c00000004001d000000000043004b000014b00000a13d001100000008001d00000c0b0110009a000000000020043f000000400200043d000b00000002001d000000200220003900000d3a030000410000000000320435000000000201041a000000010320019000000001042002700000007f0440618f000a00000004001d0000001f0040008c00000000040000390000000104002039000000000442013f0000000100400190000005330000c13d0000000b040000290009003e0040003d000000000003004b000008df0000613d000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d0000000a05000029000000000005004b0000000906000029000008e30000613d000000000101043b00000000020000190000000003620019000000000401041a000000000043043500000001011000390000002002200039000000000052004b0000030d0000413d000008e30000013d0000000001000416000000000001004b000000540000c13d0000000203000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f0000000100500190000005330000c13d000000800010043f000000000004004b000004720000613d000000000030043f000000000001004b0000000002000019000004770000613d00000bbb030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b0000032c0000413d000004770000013d0000000001000416000000000001004b000000540000c13d0000000303000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f0000000100500190000005330000c13d000000800010043f000000000004004b000004720000613d000000000030043f000000000001004b0000000002000019000004770000613d00000bbe030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b0000034b0000413d000004770000013d00000000010400192ec51ef20000040f001300000001001d001200000002001d001100000003001d000000400100043d001000000001001d2ec51f040000040f000000100400002900000000000404350000001301000029000000120200002900000011030000292ec522e10000040f000000000100001900002ec60001042e0000000001000416000000000001004b000000540000c13d0000002301000039000004430000013d000000440040008c000000540000413d0000000402100370000000000202043b001200000002001d00000bb50020009c000000540000213d0000002401100370000000000101043b000000000001004b0000056b0000c13d00000d8a01000041000000000010043f00000d440100004100002ec700010430000000440040008c000000540000413d0000000002000416000000000002004b000000540000c13d0000000402100370000000000202043b001300000002001d00000bb50020009c000000540000213d0000002401100370000000000201043b000000000002004b0000000001000039000000010100c039001200000002001d000000000012004b000000540000c13d0000000001000411000000000010043f0000000701000039000000200010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000d38011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000000101043b0000001302000029000000000020043f000000200010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000d38011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000000101043b000000000201041a00000d92022001970000001203000029000000000232019f000000000021041b000000400100043d000000000031043500000bb20010009c00000bb2010080410000004001100210000000000200041400000bb20020009c00000bb202008041000000c002200210000000000112019f00000c00011001c70000800d02000039000000030300003900000d7b04000041000000000500041100000013060000292ec52ebb0000040f0000000100200190000000540000613d0000041b0000013d000000240040008c000000540000413d0000000002000416000000000002004b000000540000c13d0000000401100370000000000101043b2ec524b50000040f00000bb501100197000000400200043d000000000012043500000bb20020009c00000bb202008041000000400120021000000d2c011001c700002ec60001042e000000240040008c000000540000413d0000000002000416000000000002004b000000540000c13d0000000401100370000000000101043b000000000010043f0000000a01000039000000200010043f000000400200003900000000010000192ec52e8f0000040f0000000502100039000000000202041a0000000403100039000000000303041a0000000304100039000000000404041a0000000205100039000000000505041a0000000106100039000000000606041a000000000101041a000000800010043f000000a00060043f000000c00050043f000000e00040043f000001000030043f000001200020043f00000d2d0100004100002ec60001042e0000000001000416000000000001004b000000540000c13d0000002a01000039000000000101041a00000bb501100197000000800010043f00000d270100004100002ec60001042e000000240040008c000000540000413d0000000002000416000000000002004b000000540000c13d0000000401100370000000000101043b000000000010043f0000000b01000039000000200010043f000000400200003900000000010000192ec52e8f0000040f000004430000013d0000000001000416000000000001004b000000540000c13d0000000901000039000000000201041a00000bb5032001970000000005000411000000000053004b0000045e0000c13d00000bc002200197000000000021041b000000000100041400000bb20010009c00000bb201008041000000c00110021000000bc1011001c70000800d02000039000000030300003900000bc20400004100000000060000192ec52ebb0000040f0000000100200190000000540000613d000000000100001900002ec60001042e000000240040008c000000540000413d0000000002000416000000000002004b000000540000c13d0000000401100370000000000601043b00000bb50060009c000000540000213d0000000901000039000000000201041a00000bb5032001970000000005000411000000000053004b0000045e0000c13d000000000006004b000006140000c13d00000d2801000041000000800010043f0000002001000039000000840010043f0000002601000039000000a40010043f00000d2901000041000000c40010043f00000d2a01000041000000e40010043f00000d2b0100004100002ec70001043000000000010400192ec51ef20000040f2ec51f210000040f000000000100001900002ec60001042e0000000001000416000000000001004b000000540000c13d0000002701000039000000000101041a000000800010043f00000d270100004100002ec60001042e000000240040008c000000540000413d0000000002000416000000000002004b000000540000c13d0000000401100370000000000101043b00000bb50010009c000000540000213d000000000001004b000005bb0000c13d00000d8201000041000000000010043f00000d440100004100002ec7000104300000000001000416000000000001004b000000540000c13d0000002601000039000000000101041a000000800010043f00000d270100004100002ec60001042e00000d2801000041000000800010043f0000002001000039000000840010043f000000a40010043f00000d8301000041000000c40010043f00000d7d0100004100002ec700010430000000000004004b0000000003000019000005230000613d000000030340021000000d930330027f00000d93033001670000000005050433000000000335016f0000000104400210000000000343019f000005230000013d00000d9202200197000000a00020043f000000000001004b00000020020000390000000002006039000000200220003900000080010000392ec51f0f0000040f000000400100043d001300000001001d00000080020000392ec51edd0000040f0000001302000029000000000121004900000bb20010009c00000bb201008041000000600110021000000bb20020009c00000bb2020080410000004002200210000000000121019f00002ec60001042e00000c1c0030009c0000010a0000213d00000000090300190000006002900039000000400020043f000000400290003900000d2e030000410000000000320435000000200290003900000d2f03000041000000000032043500000040020000390000000000290435000000000201043300000d300020009c00000abf0000213d00000d310020009c00000abf0000213d00000d320020009c0000010a0000213d0000000202200039000000030220011a00000002042002100000003f0240003900000d91052001970000003f0250003900000d9103200197000000400200043d0000000003320019000000000023004b0000000006000039000000010600403900000bb90030009c0000010a0000213d00000001006001900000010a0000c13d000000400030043f0000002003200039000000000005004b000004b80000613d0000000005530019000000000600003100000002066003670000000007030019000000006806043c0000000007870436000000000057004b000004b40000c13d000000000042043500000000050104330000000004150019000000000014004b000004eb0000a13d000000010590003900000000060100190000000306600039000000000706043300000012087002700000003f0880018f00000000085800190000000008080433000000f808800210000000000903043300000d3309900197000000000889019f00000000008304350000000c087002700000003f0880018f00000000085800190000000008080433000000f8088002100000000109300039000000000a09043300000d330aa0019700000000088a019f000000000089043500000006087002700000003f0880018f00000000085800190000000008080433000000f8088002100000000209300039000000000a09043300000d330aa0019700000000088a019f00000000008904350000003f0770018f00000000075700190000000007070433000000f8077002100000000308300039000000000908043300000d3309900197000000000779019f00000000007804350000000403300039000000000046004b000004bf0000413d0000000005010433000000031050011a000000020010008c0000085c0000613d000000010010008c0000085f0000c13d00000d3501000041000000020330008a0000085e0000013d0000002401000039000000000201041a00000000014200a9000000000004004b000004fb0000613d00000000034100d9000000000023004b00000abf0000c13d0000000002000416000000000012004b000005c60000c13d0000002601000039000000000101041a000000000014004b000006230000a13d00000d2801000041000000800010043f0000002001000039000000840010043f000000a40010043f00000d7f01000041000000c40010043f00000d7d0100004100002ec70001043000000bbb050000410000002006000039000000010870008a000000050880027000000bbc0880009a00000000093600190000000009090433000000000095041b00000020066000390000000105500039000000000085004b000005100000c13d000000000047004b000005210000813d0000000307400210000000f80770018f00000d930770027f00000d930770016700000000033600190000000003030433000000000373016f000000000035041b000000010340021000000001033001bf0000000204000039000000000034041b000000000301043300000bb90030009c0000010a0000213d0000000304000039000000000504041a000000010050019000000001045002700000007f0440618f0000001f0040008c00000000060000390000000106002039000000000565013f0000000100500190000005390000613d00000d4701000041000000000010043f0000002201000039000000040010043f00000d480100004100002ec700010430000000200040008c0000054b0000413d0000000305000039000000000050043f0000001f05300039000000050550027000000bbd0550009a000000200030008c00000bbe050040410000001f04400039000000050440027000000bbd0440009a000000000045004b0000054b0000813d000000000005041b0000000105500039000000000045004b000005470000413d000000200030008c000005cf0000413d0000000302000039000000000020043f00000d9105300198000006530000c13d000000200400003900000bbe020000410000065f0000013d0000000202000039000000000021041b00000d8401000041000000000010044300000000010004100000000400100443000000000100041400000bb20010009c00000bb201008041000000c00110021000000d85011001c70000800a020000392ec52ec00000040f000000010020019000001e940000613d000000000301043b00000000010004140000000004000411000000040040008c000007c20000c13d00000001020000390000000101000031000007db0000013d001100000001001d000000000010043f0000000401000039000000200010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000d38011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000000101043b000000000101041a000000000001004b000005930000c13d000000000100041a0000001102000029000000000021004b000003730000a13d000000010220008a001300000002001d000000000020043f0000000401000039000000200010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000d38011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000000101043b000000000101041a000000000001004b0000001302000029000005800000613d00000d42001001980000001102000029000003730000c13d00130bb50010019b0000000003000411000000130030006c000008380000c13d000000000020043f0000000601000039000000200010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000d38011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000120200002900000bb506200197000000000101043b000000000201041a00000bc002200197000000000262019f000000000021041b000000000100041400000bb20010009c00000bb201008041000000c00110021000000bc1011001c70000800d02000039000000040300003900000d8904000041000000130500002900000011070000292ec52ebb0000040f0000000100200190000000540000613d0000041b0000013d000000000010043f0000000501000039000000200010043f000000400200003900000000010000192ec52e8f0000040f000000000101041a00000bb901100197000000800010043f00000d270100004100002ec60001042e00000d2801000041000000800010043f0000002001000039000000840010043f000000a40010043f00000d7c01000041000000c40010043f00000d7d0100004100002ec700010430000000000003004b00000000010000190000066b0000613d000000030130021000000d930110027f00000d93011001670000000002020433000000000112016f0000000102300210000000000121019f0000066b0000013d00000000010000190000000002010019000000010110003a00000abf0000613d000000090030008c0000000a0330011a000005db0000213d001100000004001d00000d360020009c0000010a0000213d00000d91042001970000005f0240003900000d9102200197000000400500043d0000000002250019001200000005001d000000000052004b0000000005000039000000010500403900000bb90020009c0000010a0000213d00000001005001900000010a0000c13d000000400020043f00000012020000290000000002120436000000200540003900000d91045001980000001f0350018f000006000000613d0000000004420019000000000500003100000002055003670000000006020019000000005705043c0000000006760436000000000046004b000005fc0000c13d000000000003004b00000013030000290000001207000029000000000001004b00000abf0000613d000000010110008a0000000004070433000000000014004b000014b00000a13d0000000004210019000000090030008c0000000a5330011a000000f805500210000000000604043300000d3306600197000000000565019f00000d37055001c70000000000540435000006030000213d000002960000013d00000bc002200197000000000262019f000000000021041b000000000100041400000bb20010009c00000bb201008041000000c00110021000000bc1011001c70000800d02000039000000030300003900000bc2040000412ec52ebb0000040f0000000100200190000000540000613d0000041b0000013d001300000004001d000000000100041100000bb501100197001200000001001d000000000010043f0000002801000039000000200010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000d38011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000000101043b000000000101041a0000001302000029000000000021001a00000abf0000413d001100000021001d0000002701000039000000000101041a000000110010006b0000081e0000a13d000000400100043d000000440210003900000d7e03000041000000000032043500000024021000390000001b03000039000008130000013d00000d420010019800000012010000290000064f0000c13d000000000010043f0000000601000039000000200010043f000000400200003900000000010000192ec52e8f0000040f000000000101041a000003c50000013d00000d8b01000041000000000010043f00000d440100004100002ec70001043000000bbe020000410000002004000039000000010650008a000000050660027000000bbf0660009a00000000071400190000000007070433000000000072041b00000020044000390000000102200039000000000062004b000006580000c13d000000000035004b000006690000813d0000000305300210000000f80550018f00000d930550027f00000d930550016700000000011400190000000001010433000000000151016f000000000012041b000000010130021000000001011001bf0000000303000039000000000013041b0000000101000039000000000010041b000000000100041100000bb5061001970000000904000039000000000104041a00000bc002100197000000000262019f000000000024041b000000000200041400000bb50510019700000bb20020009c00000bb202008041000000c00120021000000bc1011001c70000800d0200003900000bc204000041000c00000006001d2ec52ebb0000040f0000000100200190000000540000613d000000400100043d001300000001001d00000bc30010009c0000010a0000213d00000013010000290000010002100039000000400020043f00000bc40010009c0000010a0000213d00000013050000290000020001500039000000400010043f000000dc010000390000000000120435000001e00350003900000bc5040000410000000000430435000001c00350003900000bc6040000410000000000430435000001a00350003900000bc7040000410000000000430435000001800350003900000bc8040000410000000000430435000001600350003900000bc9040000410000000000430435000001400350003900000bca040000410000000000430435000001200350003900000bcb0400004100000000004304350000000002250436000000400300043d00000bc30030009c0000010a0000213d0000010004300039000000400040043f000000e00430003900000bcc050000410000000000540435000000c00430003900000bcd050000410000000000540435000000a00430003900000bce050000410000000000540435000000800430003900000bcf050000410000000000540435000000600430003900000bd0050000410000000000540435000000400430003900000bd1050000410000000000540435000000200430003900000bd205000041000000000054043500000000001304350000000000320435000000400200043d00000bc30020009c0000010a0000213d0000010003200039000000400030043f000000e00320003900000bd3040000410000000000430435000000c00320003900000bd4040000410000000000430435000000a00320003900000bd5040000410000000000430435000000800320003900000bd6040000410000000000430435000000600320003900000bd7040000410000000000430435000000400320003900000bd8040000410000000000430435000000200320003900000bd90400004100000000004304350000000000120435000000130300002900000040033000390000000000230435000000400200043d00000bc30020009c0000010a0000213d0000010003200039000000400030043f000000e00320003900000bda040000410000000000430435000000c00320003900000bdb040000410000000000430435000000a00320003900000bdc040000410000000000430435000000800320003900000bdd040000410000000000430435000000600320003900000bde040000410000000000430435000000400320003900000bdf040000410000000000430435000000200320003900000be00400004100000000004304350000000000120435001e00600000003d000000130300002900000060033000390000000000230435000000400200043d00000bc30020009c0000010a0000213d0000010003200039000000400030043f000000e00320003900000be1040000410000000000430435000000c00320003900000be2040000410000000000430435000000a00320003900000be3040000410000000000430435000000800320003900000be4040000410000000000430435000000600320003900000be5040000410000000000430435000000400320003900000be6040000410000000000430435000000200320003900000be70400004100000000004304350000000000120435000000130300002900000080033000390000000000230435000000400200043d00000bc30020009c0000010a0000213d0000010003200039000000400030043f000000e00320003900000be8040000410000000000430435000000c00320003900000be9040000410000000000430435000000a00320003900000bea040000410000000000430435000000800320003900000beb040000410000000000430435000000600320003900000bec040000410000000000430435000000400320003900000bed040000410000000000430435000000200320003900000bee040000410000000000430435000000d2030000390000000000320435001d00a00000003d0000001303000029000000a0033000390000000000230435000000400200043d00000bc30020009c0000010a0000213d0000010003200039000000400030043f000000e00320003900000bef040000410000000000430435000000c00320003900000bf0040000410000000000430435000000a00320003900000bf1040000410000000000430435000000800320003900000bf2040000410000000000430435000000600320003900000bf3040000410000000000430435000000400320003900000bf4040000410000000000430435000000200320003900000bf50400004100000000004304350000000000120435001c00c00000003d0000001303000029000000c0033000390000000000230435000000400200043d00000bc30020009c0000010a0000213d0000010003200039000000400030043f000000e00320003900000bf6040000410000000000430435000000c00320003900000bf7040000410000000000430435000000a00320003900000bf8040000410000000000430435000000800320003900000bf9040000410000000000430435000000600320003900000bfa040000410000000000430435000000400320003900000bfb040000410000000000430435000000200320003900000bfc0400004100000000004304350000000000120435001b00e00000003d0000001301000029000000e00110003900000000002104350000000c03000039000000000103041a0000000802000039000000000023041b000000090010008c000008610000413d00000bfd0310009a00000bfe0030009c000008610000413d00000bff04000041001000000003001d0000078b0000013d000000000001041b0000000104400039000000000034004b000008610000813d000000000104041a000000010010019000000001051002700000007f0550618f0000001f0050008c00000000020000390000000102002039000000000121013f0000000100100190000005330000c13d000000000005004b000007880000613d0000001f0050008c0000000001040019000007870000a13d001100000005001d001200000004001d000000000040043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000000201043b00000011010000290000001f01100039000000050110027000000000011200190000000102200039000000000012004b000007b20000813d000000000002041b0000000102200039000000000012004b000007ae0000413d0000001201000029000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000000101043b0000001204000029000000000004041b0000001003000029000007870000013d00000bb20010009c00000bb201008041000000c001100210000000000003004b000007d30000c13d0000000002040019000007d60000013d00000d2801000041000000800010043f0000002001000039000000840010043f0000000f01000039000000a40010043f00000d8101000041000000c40010043f00000d7d0100004100002ec70001043000000bc1011001c7000080090200003900000000050000192ec52ebb0000040f0003000000010355000000600110027000010bb20010019d00000bb201100197000000000001004b000007e40000c13d00000001002001900000080d0000613d00000001010000390000001e02000039000000000012041b000000000100001900002ec60001042e00000bb90010009c0000010a0000213d0000001f0410003900000d91044001970000003f0440003900000d9105400197000000400400043d0000000005540019000000000045004b0000000006000039000000010600403900000bb90050009c0000010a0000213d00000001006001900000010a0000c13d000000400050043f000000000614043600000d91031001980000001f0410018f00000000013600190000000305000367000007ff0000613d000000000705034f000000007807043c0000000006860436000000000016004b000007fb0000c13d000000000004004b000007dd0000613d000000000335034f0000000304400210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000007dd0000013d000000400100043d000000440210003900000d8603000041000000000032043500000024021000390000001003000039000000000032043500000d2802000041000000000021043500000004021000390000002003000039000000000032043500000bb20010009c00000bb201008041000000400110021000000d7a011001c700002ec7000104300000001201000029000000000010043f0000002801000039000000200010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000d38011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000000101043b000000000101041a000000110010002a00000abf0000413d001200110010002d00000000010004112ec51eaa0000040f0000001202000029000000000021041b00000013010000292ec524e90000040f000000000100001900002ec60001042e0000001301000029000000000010043f0000000701000039000000200010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000d38011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000000101043b000000000200041100000bb502200197000000000020043f000000200010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000d38011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000000101043b000000000101041a000000ff0010019000000011020000290000059a0000c13d00000d8801000041000000000010043f00000d440100004100002ec70001043000000d3401000041000000010330008a00000000001304350000000004020019000002850000013d0000000c01000039000000000010043f00000c010600004100000000040000190000086e0000013d000000010170021000000001011001bf0000001104000029000000000016041b000000070040008c00000001044000390000000106600039000009110000813d00000013010000290000000013010434001300000001001d000000007503043400000bb90050009c0000010a0000213d000000000106041a000000010010019000000001081002700000007f0880618f0000001f0080008c00000000020000390000000102002039000000000121013f0000000100100190000005330000c13d000000200080008c001200000006001d001100000004001d001000000005001d000f00000003001d000008a40000413d000d00000008001d000e00000007001d000000000060043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d00000010050000290000001f025000390000000502200270000000200050008c0000000002004019000000000301043b0000000d010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b000000120600002900000011040000290000000e07000029000008a40000813d000000000002041b0000000102200039000000000012004b000008a00000413d0000001f0050008c000008c50000a13d000000000060043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000100700002900000d9102700198000000000101043b000008d10000613d000000010320008a000000050330027000000000033100190000000104300039000000200300003900000012060000290000000f0800002900000000058300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000008bb0000c13d000000000072004b000008660000813d000008d60000013d000000000005004b000008c90000613d0000000001070433000008ca0000013d0000000001000019000000030250021000000d930220027f00000d9302200167000000000121016f0000000102500210000000000121019f000008690000013d000000200300003900000012060000290000000f08000029000000000072004b000008660000813d0000000302700210000000f80220018f00000d930220027f00000d930220016700000000038300190000000003030433000000000223016f000000000021041b000008660000013d00000d9201200197000000090600002900000000001604350000000a05000029000000100100002900000c340110009a000000000365001900000d3b020000410000000000230435000000030230003900000d3c040000410000000000420435000000000201041a000000010420019000000001052002700000007f0550618f001000000005001d0000001f0050008c00000000050000390000000105002039000000000552013f0000000100500190000005330000c13d000a00220030003d000000000004004b000009c60000613d000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d0000001005000029000000000005004b0000000a06000029000009ca0000613d000000000101043b00000000020000190000000003620019000000000401041a000000000043043500000001011000390000002002200039000000000052004b000009090000413d000009ca0000013d000000400100043d001100000001001d00000bc30010009c0000010a0000213d00000011020000290000010001200039000000400010043f00000c020020009c0000010a0000213d00000011030000290000014002300039000000400020043f000000060200003900000000002104350000000001130436000001200230003900000c03030000410000000000320435000000400200043d00000bb60020009c0000010a0000213d0000004003200039000000400030043f000000200320003900000c04040000410000000000430435000000040300003900000000003204350000000000210435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000c0503000041000000000032043500000009020000390000000000210435000000110200002900000040022000390000000000120435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000c060300004100000000003204350000000b020000390000000000210435000000110200002900000060022000390000000000120435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000c0703000041000000000032043500000005020000390000000000210435000000110200002900000080022000390000000000120435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000c08030000410000000000320435000000040200003900000000002104350000001102000029000000a0022000390000000000120435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000c09030000410000000000320435000000050200003900000000002104350000001102000029000000c0022000390000000000120435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000c0a030000410000000000320435000000060200003900000000002104350000001102000029000000e00220003900000000001204350000000d02000039000000000102041a0000000803000039000000000032041b000000090010008c00000ac50000413d00000c0b0110009a001000000001001d00000c0c0010009c00000ac50000413d00130c0d000000450000098e0000013d000000000001041b00000013020000290000000102200039001300000002001d000000100020006c00000ac50000813d0000001301000029000000000101041a000000010010019000000001021002700000007f0220618f001200000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000005330000c13d000000120000006b000009890000613d00000012010000290000001f0010008c0000001301000029000009880000a13d0000001301000029000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000000201043b00000012010000290000001f01100039000000050110027000000000011200190000000102200039000000000012004b000009b70000813d000000000002041b0000000102200039000000000012004b000009b30000413d0000001301000029000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000000101043b0000001302000029000000000002041b000009880000013d00000d92012001970000000a06000029000000000016043500000010050000290000000f0100002900000c710110009a000000000365001900000d3b020000410000000000230435000000030230003900000d3d040000410000000000420435000000000201041a000000010420019000000001052002700000007f0550618f001000000005001d0000001f0050008c00000000050000390000000105002039000000000552013f0000000100500190000005330000c13d000f00220030003d000000000004004b000009f80000613d000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d0000001005000029000000000005004b0000000f06000029000009fc0000613d000000000101043b00000000020000190000000003620019000000000401041a000000000043043500000001011000390000002002200039000000000052004b000009f00000413d000009fc0000013d00000d92012001970000000f06000029000000000016043500000010050000290000000e0100002900000c8b0110009a000000000365001900000d3b020000410000000000230435000000030230003900000d3e040000410000000000420435000000000201041a000000010420019000000001052002700000007f0550618f001000000005001d0000001f0050008c00000000050000390000000105002039000000000552013f0000000100500190000005330000c13d000f00230030003d000000000004004b00000a2a0000613d000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d0000001005000029000000000005004b0000000f0600002900000a2e0000613d000000000101043b00000000020000190000000003620019000000000401041a000000000043043500000001011000390000002002200039000000000052004b00000a220000413d00000a2e0000013d00000d92012001970000000f06000029000000000016043500000010050000290000000d0100002900000caa0110009a000000000365001900000d3b020000410000000000230435000000030230003900000d3f040000410000000000420435000000000201041a000000010420019000000001052002700000007f0550618f001000000005001d0000001f0050008c00000000050000390000000105002039000000000552013f0000000100500190000005330000c13d000f00220030003d000000000004004b00000a5c0000613d000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d0000001005000029000000000005004b0000000f0600002900000a600000613d000000000101043b00000000020000190000000003620019000000000401041a000000000043043500000001011000390000002002200039000000000052004b00000a540000413d00000a600000013d00000d92012001970000000f06000029000000000016043500000010050000290000000c0100002900000ce80110009a000000000365001900000d3b020000410000000000230435000000030230003900000d40040000410000000000420435000000000201041a000000010420019000000001052002700000007f0550618f001000000005001d0000001f0050008c00000000050000390000000105002039000000000552013f0000000100500190000005330000c13d000f00230030003d000000000004004b00000a8e0000613d000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d0000001005000029000000000005004b0000000f0600002900000a920000613d000000000101043b00000000020000190000000003620019000000000401041a000000000043043500000001011000390000002002200039000000000052004b00000a860000413d00000a920000013d00000d92012001970000000f0600002900000000001604350000001005000029000000000165001900000d410200004100000000002104350000000b0300002900000000013100490000001e0210008a0000000000230435000000210110003900000d91021001970000000001320019000000000021004b0000000002000039000000010200403900000bb90010009c0000010a0000213d00000001002001900000010a0000c13d000000400010043f000000130000006b00000c8f0000613d000000000200041a000000130020006c00000c8f0000a13d0000001301000029001000000001001d000000000010043f0000000401000039000000200010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000d38011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000000101043b000000000101041a000000000001004b00000b410000c13d0000001001000029000000000001004b000000010110008a00000aaa0000c13d00000d4701000041000000000010043f0000001101000039000000040010043f00000d480100004100002ec7000104300000000d01000039000000000010043f00120c0e00000045001000000000001d00000ad30000013d000000010150021000000001011001bf0000001202000029000000000012041b0000001001000029000000070010008c001000010010003d001200010020003d00000b7f0000813d00000011010000290000000012010434001100000001001d000f00000002001d0000000021020434000d00000002001d001300000001001d00000bb90010009c0000010a0000213d0000001201000029000000000101041a000000010010019000000001031002700000007f0330618f0000001f0030008c00000000020000390000000102002039000000000121013f0000000100100190000005330000c13d000e00000003001d000000200030008c00000b060000413d0000001201000029000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d00000013030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b0000000e010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00000b060000813d000000000002041b0000000102200039000000000012004b00000b020000413d00000013010000290000001f0010008c00000b260000a13d0000001201000029000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000200200008a0000001302200180000000000101043b00000b340000613d000000010320008a00000005033002700000000003310019000000010430003900000020030000390000000f0600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b00000b1e0000c13d00000b350000013d000000130000006b00000b2b0000613d0000000d01000029000000000101043300000b2c0000013d00000000010000190000001304000029000000030240021000000d930220027f00000d9302200167000000000121016f0000000102400210000000000121019f00000acc0000013d00000020030000390000001305000029000000000052004b00000aca0000813d0000000302500210000000f80220018f00000d930220027f00000d93022001670000000f033000290000000003030433000000000223016f000000000021041b00000aca0000013d00000d420010019800000c8e0000c13d0000001301000029000000000010043f0000000a01000039000000200010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000d38011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000400200043d001000000002001d00000d390020009c0000010a0000213d000000000101043b0000001004000029000000c002400039000000400020043f000000000201041a00000000032404360000000102100039000000000202041a000800000003001d00000000002304350000000202100039000000000202041a0000004003400039000900000003001d00000000002304350000000302100039000000000202041a0000006003400039000a00000003001d00000000002304350000000402100039000000000202041a0000008003400039000c00000003001d0000000000230435000000a0024000390000000501100039000000000101041a000d00000002001d00000000001204350000002201000039000000000201041a00000d4301000041000000400300043d001300000003001d0000000000130435000000000100041400000bb502200197000000040020008c00000c950000c13d0000000301000367000000010300003100000ca50000013d000000400400043d00000bc30040009c0000010a0000213d0000010001400039000000400010043f000000e00140003900000064020000390000000000210435000000c0024000390000005a030000390000000000320435000000a0034000390000005005000039000000000053043500000080054000390000004006000039000000000065043500000060064000390000003a0700003900000000007604350000004007400039000000300800003900000000008704350000000f0800003900000000088404360000001e0900003900000000009804350000000e0a00003900000000090a041a000000080b0000390000000000ba041b000000090090008c00000ba80000413d00000c0f0990009a00000c100090009c00000ba80000413d00000c110a00004100000000000a041b000000010aa0003900000000009a004b00000ba40000413d0000000e09000039000000000090043f0000000004040433000000ff0440018f00000c1209000041000000000049041b0000000004080433000000ff0440018f00000c1308000041000000000048041b0000000004070433000000ff0440018f00000c1407000041000000000047041b0000000004060433000000ff0440018f00000c1506000041000000000046041b0000000004050433000000ff0440018f00000c1605000041000000000045041b0000000003030433000000ff0330018f00000c1704000041000000000034041b0000000002020433000000ff0220018f00000c1803000041000000000023041b0000000001010433000000ff0110018f00000c1902000041000000000012041b000000400100043d000f00000001001d00000bc30010009c0000010a0000213d0000000f020000290000010001200039000000400010043f00000c020020009c0000010a0000213d0000000f030000290000014002300039000000400020043f0000000a0200003900000000002104350000000001130436000001200230003900000c1a030000410000000000320435000000400200043d00000bb60020009c0000010a0000213d0000004003200039000000400030043f000000200320003900000c1b0400004100000000004304350000001e0300003900000000003204350000000000210435000000400100043d00000c1c0010009c0000010a0000213d0000006002100039000000400020043f000000400210003900000c1d030000410000000000320435000000200210003900000c1e0300004100000000003204350000002d0200003900000000002104350000000f0200002900000040022000390000000000120435000000400100043d00000c1c0010009c0000010a0000213d0000006002100039000000400020043f000000400210003900000c1f030000410000000000320435000000200210003900000c200300004100000000003204350000002d0200003900000000002104350000000f0200002900000060022000390000000000120435000000400100043d00000c1c0010009c0000010a0000213d0000006002100039000000400020043f000000400210003900000c21030000410000000000320435000000200210003900000c220300004100000000003204350000002d0200003900000000002104350000000f0200002900000080022000390000000000120435000000400100043d00000c1c0010009c0000010a0000213d0000006002100039000000400020043f000000400210003900000c23030000410000000000320435000000200210003900000c24030000410000000000320435000000280200003900000000002104350000000f02000029000000a0022000390000000000120435000000400100043d00000c1c0010009c0000010a0000213d0000006002100039000000400020043f000000400210003900000c25030000410000000000320435000000200210003900000c260300004100000000003204350000002d0200003900000000002104350000000f02000029000000c0022000390000000000120435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000c270300004100000000003204350000000a0200003900000000002104350000000f02000029000000e00220003900000000001204350000000f02000039000000000102041a0000000803000039000000000032041b000000090010008c00000d4d0000413d00000c280110009a001100000001001d00000c290010009c00000d4d0000413d00130c2a0000004500000c560000013d000000000001041b00000013020000290000000102200039001300000002001d000000110020006c00000d4d0000813d0000001301000029000000000101041a000000010010019000000001021002700000007f0220618f001200000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000005330000c13d000000120000006b00000c510000613d00000012010000290000001f0010008c000000130100002900000c500000a13d0000001301000029000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000000201043b00000012010000290000001f01100039000000050110027000000000011200190000000102200039000000000012004b00000c7f0000813d000000000002041b0000000102200039000000000012004b00000c7b0000413d0000001301000029000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000000101043b0000001302000029000000000002041b00000c500000013d000000400100043d000000440210003900000d7903000041000000000032043500000024021000390000001403000039000008130000013d000000130300002900000bb20030009c00000bb203008041000000400330021000000bb20010009c00000bb201008041000000c001100210000000000131019f00000d44011001c72ec52ec00000040f000000600310027000010bb20030019d00000bb2033001970003000000010355000000010020019000000d2f0000613d00000d91043001980000001f0530018f000000130240002900000caf0000613d000000000601034f0000001307000029000000006806043c0000000007870436000000000027004b00000cab0000c13d000000000005004b00000cbc0000613d000000000141034f0000000304500210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001204350000001f0130003900000d91011001970000001302100029000000000012004b00000000010000390000000101004039000e00000002001d00000bb90020009c0000010a0000213d00000001001001900000010a0000c13d0000000e01000029000000400010043f00000d450030009c000000540000213d000000200030008c000000540000413d0000001301000029000000000101043300000bb90010009c000000540000213d000000130330002900000013011000290000001f02100039000000000032004b000000000400001900000d460400804100000d460220019700000d4605300197000000000652013f000000000052004b000000000200001900000d460200404100000d460060009c000000000204c019000000000002004b000000540000c13d000000002101043400000bb90010009c0000010a0000213d0000001f0410003900000d91044001970000003f0440003900000d91044001970000000e0440002900000bb90040009c0000010a0000213d000000400040043f0000000e040000290000000004140436001300000004001d0000000004210019000000000034004b000000540000213d000000000001004b00000cfc0000613d000000000300001900000013043000290000000005230019000000000505043300000000005404350000002003300039000000000013004b00000cf50000413d00000013011000290000000000010435000000100100002900000000010104330000000c02000039000000000302041a000000000013004b000014b00000a13d000000000020043f00000bfd0110009a000000000201041a000000010320019000000001042002700000007f0440618f001000000004001d0000001f0040008c00000000040000390000000104002039000000000442013f0000000100400190000005330000c13d000000400400043d000700000004001d00000010050000290000000004540436000f00000004001d000000000003004b00000e7f0000613d000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000100000006b000000000200001900000e850000613d000000000101043b00000000020000190000000f03200029000000000401041a000000000043043500000001011000390000002002200039000000100020006c00000d270000413d00000e850000013d0000001f0530018f00000bb406300198000000400200043d000000000462001900000d3a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000d360000c13d000000000005004b00000d470000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000bb20020009c00000bb2020080410000004002200210000000000112019f00002ec7000104300000000f01000039000000000010043f00110c2b00000045000e00000000001d00000d5c0000013d0000001201000029000000010110021000000001011001bf0000001102000029000000000012041b0000000e01000029000000070010008c000e00010010003d001100010020003d00000dca0000813d0000000f010000290000000012010434000f00000001001d001300000002001d0000000021020434000d00000002001d001200000001001d00000bb90010009c0000010a0000213d0000001101000029000000000101041a000000010010019000000001021002700000007f0220618f001000000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000005330000c13d0000001001000029000000200010008c00000d900000413d0000001101000029000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d00000012030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000010010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00000d900000813d000000000002041b0000000102200039000000000012004b00000d8c0000413d00000012010000290000001f0010008c00000daf0000a13d0000001101000029000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000200200008a0000001202200180000000000101043b00000db40000613d000000010320008a000000050330027000000000033100190000000104300039000000200300003900000013053000290000000005050433000000000051041b00000020033000390000000101100039000000000041004b00000da70000c13d00000db50000013d000000120000006b00000dc10000613d0000000d01000029000000000101043300000dc20000013d0000002003000039000000120020006c00000d520000813d00000012020000290000000302200210000000f80220018f00000d930220027f00000d930220016700000013033000290000000003030433000000000223016f000000000021041b00000d520000013d00000000010000190000001204000029000000030240021000000d930220027f00000d9302200167000000000121016f0000000102400210000000000121019f00000d550000013d000000400100043d000f00000001001d00000bc30010009c0000010a0000213d0000000f020000290000010001200039000000400010043f00000c020020009c0000010a0000213d0000000f030000290000014002300039000000400020043f000000050200003900000000002104350000000001130436000001200230003900000c2c030000410000000000320435000000400200043d00000bb60020009c0000010a0000213d0000004003200039000000400030043f000000200320003900000c2d0400004100000000004304350000000a0300003900000000003204350000000000210435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000c2e0300004100000000003204350000000a0200003900000000002104350000000f0200002900000040022000390000000000120435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000c2f0300004100000000003204350000000a0200003900000000002104350000000f0200002900000060022000390000000000120435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000c300300004100000000003204350000000a0200003900000000002104350000000f0200002900000080022000390000000000120435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000c31030000410000000000320435000000090200003900000000002104350000000f02000029000000a0022000390000000000120435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000c32030000410000000000320435000000020200003900000000002104350000000f02000029000000c0022000390000000000120435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000c33030000410000000000320435000000050200003900000000002104350000000f02000029000000e00220003900000000001204350000001002000039000000000102041a0000000803000039000000000032041b000000090010008c00000ec40000413d00000c340110009a001100000001001d00000c350010009c00000ec40000413d00130c360000004500000e550000013d0000001301000029000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000000101043b0000001302000029000000000002041b000000000001041b00000013020000290000000102200039001300000002001d000000110020006c00000ec40000813d0000001301000029000000000101041a000000010010019000000001021002700000007f0220618f001200000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000005330000c13d000000120000006b00000e500000613d00000012010000290000001f0010008c000000130100002900000e4f0000a13d0000001301000029000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000000201043b00000012010000290000001f01100039000000050110027000000000011200190000000102200039000000000012004b00000e410000813d000000000002041b0000000102200039000000000012004b00000e7a0000413d00000e410000013d00000d92012001970000000f020000290000000000120435000000100000006b000000200200003900000000020060390000003f0120003900000d91021001970000000701200029000000000021004b0000000002000039000000010200403900000bb90010009c0000010a0000213d00000001002001900000010a0000c13d000000400010043f00000007010000292ec52b120000040f000700000001001d000000080100002900000000010104330000000f02000039000000000302041a000000000013004b000014b00000a13d000000000020043f00000c280110009a000000000201041a000000010320019000000001042002700000007f0440618f001000000004001d0000001f0040008c00000000040000390000000104002039000000000442013f0000000100400190000005330000c13d000000400400043d000800000004001d00000010050000290000000004540436000f00000004001d000000000003004b00000f410000613d000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000100000006b000000000200001900000f470000613d000000000101043b00000000020000190000000f03200029000000000401041a000000000043043500000001011000390000002002200039000000100020006c00000ebc0000413d00000f470000013d0000001001000039000000000010043f00110c3700000045000e00000000001d00000ed30000013d0000001201000029000000010110021000000001011001bf0000001102000029000000000012041b0000000e01000029000000070010008c000e00010010003d001100010020003d00000f860000813d0000000f010000290000000012010434000f00000001001d001300000002001d0000000021020434000d00000002001d001200000001001d00000bb90010009c0000010a0000213d0000001101000029000000000101041a000000010010019000000001021002700000007f0220618f001000000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000005330000c13d0000001001000029000000200010008c00000f070000413d0000001101000029000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d00000012030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000010010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00000f070000813d000000000002041b0000000102200039000000000012004b00000f030000413d00000012010000290000001f0010008c00000f260000a13d0000001101000029000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000200200008a0000001202200180000000000101043b00000f2b0000613d000000010320008a000000050330027000000000033100190000000104300039000000200300003900000013053000290000000005050433000000000051041b00000020033000390000000101100039000000000041004b00000f1e0000c13d00000f2c0000013d000000120000006b00000f380000613d0000000d01000029000000000101043300000f390000013d0000002003000039000000120020006c00000ec90000813d00000012020000290000000302200210000000f80220018f00000d930220027f00000d930220016700000013033000290000000003030433000000000223016f000000000021041b00000ec90000013d00000000010000190000001204000029000000030240021000000d930220027f00000d9302200167000000000121016f0000000102400210000000000121019f00000ecc0000013d00000d92012001970000000f020000290000000000120435000000100000006b000000200200003900000000020060390000003f0120003900000d91021001970000000801200029000000000021004b0000000002000039000000010200403900000bb90010009c0000010a0000213d00000001002001900000010a0000c13d000000400010043f00000008010000292ec52b120000040f000800000001001d000000090100002900000000010104330000001202000039000000000302041a000000000013004b000014b00000a13d000000000020043f00000c5f0110009a000000000201041a000000010320019000000001042002700000007f0440618f001000000004001d0000001f0040008c00000000040000390000000104002039000000000442013f0000000100400190000005330000c13d000000400400043d000900000004001d00000010050000290000000004540436000f00000004001d000000000003004b000010f80000613d000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000100000006b0000000002000019000010fe0000613d000000000101043b00000000020000190000000f03200029000000000401041a000000000043043500000001011000390000002002200039000000100020006c00000f7e0000413d000010fe0000013d000000400500043d00000bc30050009c0000010a0000213d0000010001500039000000400010043f000000e00150003900000064020000390000000000210435000000c0025000390000005a030000390000000000320435000000a0035000390000005004000039000000000043043500000080045000390000004606000039000000000064043500000060065000390000003c07000039000000000076043500000040075000390000002d080000390000000000870435000000140800003900000000088504360000001e090000390000000000980435000000110b00003900000000090b041a000000080a0000390000000000ab041b000000090090008c00000faf0000413d00000c380990009a00000c390090009c00000faf0000413d00000c3a0a00004100000000000a041b000000010aa0003900000000009a004b00000fab0000413d0000001109000039000000000090043f0000000005050433000000ff0550018f00000c3b09000041000000000059041b0000000005080433000000ff0550018f00000c3c08000041000000000058041b0000000005070433000000ff0550018f00000c3d07000041000000000057041b0000000005060433000000ff0550018f00000c3e06000041000000000056041b0000000004040433000000ff0440018f00000c3f05000041000000000045041b0000000003030433000000ff0330018f00000c4004000041000000000034041b0000000002020433000000ff0220018f00000c4103000041000000000023041b0000000001010433000000ff0110018f00000c4202000041000000000012041b000000400100043d001200000001001d00000c430010009c0000010a0000213d0000001202000029000001c001200039000000400010043f00000c440020009c0000010a0000213d00000012040000290000022002400039000000400020043f00000023020000390000000000210435000002000240003900000c45030000410000000000320435000001e00240003900000c460300004100000000003204350000000001140436000000400200043d00000c1c0020009c0000010a0000213d0000006003200039000000400030043f000000400320003900000c47040000410000000000430435000000200320003900000c480400004100000000004304350000002d0300003900000000003204350000000000210435000000400100043d00000c1c0010009c0000010a0000213d0000006002100039000000400020043f000000400210003900000c49030000410000000000320435000000200210003900000c4a0300004100000000003204350000002d020000390000000000210435000000120200002900000040022000390000000000120435000000400100043d00000c1c0010009c0000010a0000213d0000006002100039000000400020043f000000400210003900000c4b030000410000000000320435000000200210003900000c4c03000041000000000032043500000028020000390000000000210435000000120200002900000060022000390000000000120435000000400100043d00000c1c0010009c0000010a0000213d0000006002100039000000400020043f000000400210003900000c4d030000410000000000320435000000200210003900000c4e03000041000000000032043500000028020000390000000000210435000000120200002900000080022000390000000000120435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000c4f030000410000000000320435000000140200003900000000002104350000001202000029000000a0022000390000000000120435000000400100043d00000c1c0010009c0000010a0000213d0000006002100039000000400020043f000000400210003900000c50030000410000000000320435000000200210003900000c51030000410000000000320435000000320200003900000000002104350000001202000029000000c0022000390000000000120435000000400100043d00000c1c0010009c0000010a0000213d0000006002100039000000400020043f000000400210003900000c52030000410000000000320435000000200210003900000c53030000410000000000320435000000280200003900000000002104350000001202000029000000e0022000390000000000120435000000400100043d00000c1c0010009c0000010a0000213d0000006002100039000000400020043f000000400210003900000c54030000410000000000320435000000200210003900000c5503000041000000000032043500000028020000390000000000210435001a01000000003d000000120200002900000100022000390000000000120435000000400100043d00000c1c0010009c0000010a0000213d0000006002100039000000400020043f000000400210003900000c56030000410000000000320435000000200210003900000c570300004100000000003204350000002d020000390000000000210435001901200000003d000000120200002900000120022000390000000000120435000000400100043d00000c1c0010009c0000010a0000213d0000006002100039000000400020043f000000400210003900000c58030000410000000000320435000000200210003900000c590300004100000000003204350000002d020000390000000000210435001801400000003d000000120200002900000140022000390000000000120435000000400100043d00000c5a0010009c0000010a0000213d0000002002100039000000400020043f0000000000010435001701600000003d000000120200002900000160022000390000000000120435000000400200043d00000c1c0020009c0000010a0000213d0000006001200039000000400010043f000000400120003900000c5b030000410000000000310435000000200120003900000c5c03000041000000000031043500000037010000390000000000120435001601800000003d000000120300002900000180033000390000000000230435000000400200043d00000c1c0020009c0000010a0000213d0000006003200039000000400030043f000000400320003900000c5d040000410000000000430435000000200320003900000c5e04000041000000000043043500000000001204350000001201000029000001a00110003900000000002104350000001203000039000000000103041a0000000e02000039000000000023041b0000000f0010008c0000113d0000413d00000c5f0110009a001000000001001d00000c600010009c0000113d0000413d00130c6100000045000010bf0000013d00000013020000290000000102200039001300000002001d000000100020006c0000113d0000813d0000001301000029000000000101041a000000010010019000000001021002700000007f0220618f001100000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000005330000c13d000000110000006b000010ba0000613d00000011010000290000001f0010008c0000001301000029000010f60000a13d0000001301000029000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000000201043b00000011010000290000001f01100039000000050110027000000000011200190000000102200039000000000012004b000010e80000813d000000000002041b0000000102200039000000000012004b000010e40000413d0000001301000029000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000000101043b0000001302000029000000000002041b000000000001041b000010ba0000013d00000d92012001970000000f020000290000000000120435000000100000006b000000200200003900000000020060390000003f0120003900000d91021001970000000901200029000000000021004b0000000002000039000000010200403900000bb90010009c0000010a0000213d00000001002001900000010a0000c13d000000400010043f00000009010000292ec52b120000040f000900000001001d0000000a0100002900000000010104330000001502000039000000000302041a000000000013004b000014b00000a13d000000000020043f00000c810110009a000000000201041a000000010320019000000001042002700000007f0440618f001000000004001d0000001f0040008c00000000040000390000000104002039000000000442013f0000000100400190000005330000c13d000000400400043d000a00000004001d00000010050000290000000004540436000f00000004001d000000000003004b000012be0000613d000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000100000006b0000000002000019000012c40000613d000000000101043b00000000020000190000000f03200029000000000401041a000000000043043500000001011000390000002002200039000000100020006c000011350000413d000012c40000013d0000001201000039000000000010043f00110c6200000045000e00000000001d00000012010000290000000012010434001200000001001d001300000002001d0000000021020434000d00000002001d001000000001001d00000bb90010009c0000010a0000213d0000001101000029000000000101041a000000010010019000000001021002700000007f0220618f000f00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000005330000c13d0000000f01000029000000200010008c000011750000413d0000001101000029000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d00000010030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b0000000f010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b000011750000813d000000000002041b0000000102200039000000000012004b000011710000413d00000010010000290000001f0010008c000f000100100218000b000300100218000011960000a13d0000001101000029000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000200200008a0000001002200180000000000101043b0000119b0000613d000000010320008a000000050330027000000000033100190000000104300039000000200300003900000013053000290000000005050433000000000051041b00000020033000390000000101100039000000000041004b0000118e0000c13d0000119c0000013d000000100000006b000011a90000613d0000000d010000290000000001010433000011aa0000013d0000002003000039000000100020006c000011a60000813d0000000b02000029000000f80220018f00000d930220027f00000d930220016700000013033000290000000003030433000000000223016f000000000021041b0000000f0100002900000001011001bf000011af0000013d0000000001000019000000010300008a0000000b02300250000000000232013f000000000121016f0000000f011001af0000001102000029000000000012041b0000000e010000290000000d0010008c000e00010010003d001100010020003d000011410000413d000000400100043d001200000001001d00000c430010009c0000010a0000213d0000001202000029000001c001200039000000400010043f00000bc40020009c0000010a0000213d00000012030000290000020002300039000000400020043f0000000a0200003900000000002104350000000000130435000001e00130003900000c63020000410000000000210435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000c6403000041000000000032043500000008020000390000000000210435001100200000002d000000120300002900000020023000290000000000120435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000c6503000041000000000032043500000008020000390000000000210435000000120200002900000040022000390000000000120435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000c660300004100000000003204350000000a0200003900000000002104350010001e0000002d00000012030000290000001e023000290000000000120435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000c6703000041000000000032043500000005020000390000000000210435000000120200002900000080022000390000000000120435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000c680300004100000000003204350000000b020000390000000000210435000f001d0000002d00000012030000290000001d023000290000000000120435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000c690300004100000000003204350000000a0200003900000000002104350000001202000029000000c0022000390000000000120435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000c6a030000410000000000320435000000060200003900000000002104350000001202000029000000e0022000390000000000120435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000c6b03000041000000000032043500000004020000390000000000210435000000120200002900000100022000390000000000120435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000c6c0300004100000000003204350000000d020000390000000000210435000000120200002900000120022000390000000000120435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000c6d0300004100000000003204350000000a020000390000000000210435000000120200002900000140022000390000000000120435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000c6e03000041000000000032043500000004020000390000000000210435000000120200002900000160022000390000000000120435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000c6f0300004100000000003204350000000d020000390000000000210435000000120200002900000180022000390000000000120435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000c700300004100000000003204350000000d0200003900000000002104350000001202000029000001a00220003900000000001204350000001303000039000000000103041a0000000e02000039000000000023041b0000000f0010008c000013030000413d00000c710110009a000d00000001001d00000c720010009c000013030000413d00130c7300000045000012850000013d00000013020000290000000102200039001300000002001d0000000d0020006c000013030000813d0000001301000029000000000101041a000000010010019000000001021002700000007f0220618f000e00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000005330000c13d0000000e0000006b000012800000613d0000000e010000290000001f0010008c0000001301000029000012bc0000a13d0000001301000029000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000000201043b0000000e010000290000001f01100039000000050110027000000000011200190000000102200039000000000012004b000012ae0000813d000000000002041b0000000102200039000000000012004b000012aa0000413d0000001301000029000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000000101043b0000001302000029000000000002041b000000000001041b000012800000013d00000d92012001970000000f020000290000000000120435000000100000006b000000200200003900000000020060390000003f0120003900000d91021001970000000a01200029000000000021004b0000000002000039000000010200403900000bb90010009c0000010a0000213d00000001002001900000010a0000c13d000000400010043f0000000a010000292ec52b120000040f000a00000001001d0000000c0100002900000000010104330000001802000039000000000302041a000000000013004b000014b00000a13d000000000020043f00000ca00110009a000000000201041a000000010320019000000001042002700000007f0440618f001000000004001d0000001f0040008c00000000040000390000000104002039000000000442013f0000000100400190000005330000c13d000000400400043d000c00000004001d00000010050000290000000004540436000f00000004001d000000000003004b0000146b0000613d000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000100000006b0000000002000019000014710000613d000000000101043b00000000020000190000000f03200029000000000401041a000000000043043500000001011000390000002002200039000000100020006c000012fb0000413d000014710000013d0000001301000039000000000010043f000e0c7400000045000a00000000001d00000012010000290000000012010434001200000001001d001300000002001d0000000021020434000900000002001d000d00000001001d00000bb90010009c0000010a0000213d0000000e01000029000000000101041a000000010010019000000001021002700000007f0220618f000b00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000005330000c13d0000000b01000029000000200010008c0000133b0000413d0000000e01000029000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d0000000d030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b0000000b010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000133b0000813d000000000002041b0000000102200039000000000012004b000013370000413d0000000d010000290000001f0010008c000b00010010021800080003001002180000135c0000a13d0000000e01000029000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000200200008a0000000d02200180000000000101043b000013610000613d000000010320008a000000050330027000000000033100190000000104300039000000200300003900000013053000290000000005050433000000000051041b00000020033000390000000101100039000000000041004b000013540000c13d000013620000013d0000000d0000006b0000136f0000613d00000009010000290000000001010433000013700000013d00000020030000390000000d0020006c0000136c0000813d0000000802000029000000f80220018f00000d930220027f00000d930220016700000013033000290000000003030433000000000223016f000000000021041b0000000b0100002900000001011001bf000013750000013d0000000001000019000000010300008a0000000802300250000000000232013f000000000121016f0000000b011001af0000000e02000029000000000012041b0000000a010000290000000d0010008c000a00010010003d000e00010020003d000013070000413d000000400100043d00000c430010009c0000010a0000213d000001c002100039000000400020043f0000000a02000039000000000021043500000011021000290000001404000039000000000042043500000040021000390000001e03000039000000000032043500000010021000290000002803000039000000000032043500000080021000390000002d0300003900000000003204350000000f0210002900000032030000390000000000320435000e001c0000002d0000001c021000290000003c03000039000000000032043500000042030000390000001b021000290000000000320435000001a0021000390000006403000039000000000032043500000180021000390000005f03000039000000000032043500000160021000390000005a03000039000000000032043500000140021000390000004e03000039000000000032043500000120021000390000004b030000390000000000320435000001000210003900000046030000390000000000320435000000000204041a0000000e03000039000000000034041b0000000f0020008c000013b80000413d00000c750220009a00000c760020009c000013b80000413d00000c7703000041000000000003041b0000000103300039000000000023004b000013b40000413d0000001402000039000000000020043f00000000020000190000000013010434000000ff0330018f00000c750420009a000000000034041b0000000d0020008c0000000102200039000013bb0000413d000000400100043d001200000001001d00000c780010009c0000010a0000213d0000001202000029000000e001200039000000400010043f00000c790020009c0000010a0000213d00000012030000290000012002300039000000400020043f000000140200003900000000002104350000000000130435000001000130003900000c7a020000410000000000210435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000c7b0300004100000000003204350000001e020000390000000000210435000000120300002900000011023000290000000000120435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000c7c0300004100000000003204350000001e020000390000000000210435000000120200002900000040022000390000000000120435000000400100043d00000c1c0010009c0000010a0000213d0000006002100039000000400020043f000000400210003900000c7d030000410000000000320435000000200210003900000c7e03000041000000000032043500000028020000390000000000210435000000120300002900000010023000290000000000120435000000400100043d00000c5a0010009c0000010a0000213d0000002002100039000000400020043f0000000000010435000000120200002900000080022000390000000000120435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000c7f0300004100000000003204350000001e02000039000000000021043500000012030000290000000f023000290000000000120435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000c800300004100000000003204350000001e02000039000000000021043500000012030000290000000e0230002900000000001204350000001503000039000000000103041a0000000702000039000000000023041b000000080010008c000014b60000413d00000c810110009a000b00000001001d00000c820010009c000014b60000413d00130c8300000045000014320000013d00000013020000290000000102200039001300000002001d0000000b0020006c000014b60000813d0000001301000029000000000101041a000000010010019000000001021002700000007f0220618f000d00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000005330000c13d0000000d0000006b0000142d0000613d0000000d010000290000001f0010008c0000001301000029000014690000a13d0000001301000029000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000000201043b0000000d010000290000001f01100039000000050110027000000000011200190000000102200039000000000012004b0000145b0000813d000000000002041b0000000102200039000000000012004b000014570000413d0000001301000029000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000000101043b0000001302000029000000000002041b000000000001041b0000142d0000013d00000d92012001970000000f020000290000000000120435000000100000006b000000200200003900000000020060390000003f0120003900000d91021001970000000c01200029000000000021004b0000000002000039000000010200403900000bb90010009c0000010a0000213d00000001002001900000010a0000c13d000000400010043f0000000c010000292ec52b120000040f000c00000001001d0000000d0100002900000000010104330000001b02000039000000000302041a000000000013004b000014b00000a13d000000000020043f00000cd70110009a000000000201041a000000010320019000000001042002700000007f0440618f001000000004001d0000001f0040008c00000000040000390000000104002039000000000442013f0000000100400190000005330000c13d000000400400043d000d00000004001d00000010050000290000000004540436000f00000004001d000000000003004b000015d90000613d000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000100000006b0000000002000019000015df0000613d000000000101043b00000000020000190000000f03200029000000000401041a000000000043043500000001011000390000002002200039000000100020006c000014a80000413d000015df0000013d00000d4701000041000000000010043f0000003201000039000000040010043f00000d480100004100002ec7000104300000001501000039000000000010043f000d0c8400000045000900000000001d00000012010000290000000012010434001200000001001d001300000002001d0000000021020434000800000002001d000b00000001001d00000bb90010009c0000010a0000213d0000000d01000029000000000101041a000000010010019000000001021002700000007f0220618f000a00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000005330000c13d0000000a01000029000000200010008c000014ee0000413d0000000d01000029000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d0000000b030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b0000000a010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b000014ee0000813d000000000002041b0000000102200039000000000012004b000014ea0000413d0000000b010000290000001f0010008c000a00010010021800070003001002180000150f0000a13d0000000d01000029000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000200200008a0000000b02200180000000000101043b000015140000613d000000010320008a000000050330027000000000033100190000000104300039000000200300003900000013053000290000000005050433000000000051041b00000020033000390000000101100039000000000041004b000015070000c13d000015150000013d0000000b0000006b000015220000613d00000008010000290000000001010433000015230000013d00000020030000390000000b0020006c0000151f0000813d0000000702000029000000f80220018f00000d930220027f00000d930220016700000013033000290000000003030433000000000223016f000000000021041b0000000a0100002900000001011001bf000015280000013d0000000001000019000000010300008a0000000702300250000000000232013f000000000121016f0000000a011001af0000000d02000029000000000012041b0000000901000029000000060010008c000900010010003d000d00010020003d000014ba0000413d000000400100043d001200000001001d00000c780010009c0000010a0000213d0000001202000029000000e001200039000000400010043f00000c790020009c0000010a0000213d00000012030000290000012002300039000000400020043f000000040200003900000000002104350000000000130435000001000130003900000c85020000410000000000210435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000c8603000041000000000032043500000003020000390000000000210435000000120300002900000011023000290000000000120435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000c8703000041000000000032043500000008020000390000000000210435000000120200002900000040022000390000000000120435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000c8803000041000000000032043500000007020000390000000000210435000000120300002900000010023000290000000000120435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000c6e03000041000000000032043500000004020000390000000000210435000000120200002900000080022000390000000000120435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000c890300004100000000003204350000000a02000039000000000021043500000012030000290000000f023000290000000000120435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000c8a0300004100000000003204350000000402000039000000000021043500000012030000290000000e0230002900000000001204350000001603000039000000000103041a0000000702000039000000000023041b000000080010008c000016de0000413d00000c8b0110009a000b00000001001d00000c8c0010009c000016de0000413d00130c8d00000045000015a00000013d00000013020000290000000102200039001300000002001d0000000b0020006c000016de0000813d0000001301000029000000000101041a000000010010019000000001021002700000007f0220618f000d00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000005330000c13d0000000d0000006b0000159b0000613d0000000d010000290000001f0010008c0000001301000029000015d70000a13d0000001301000029000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000000201043b0000000d010000290000001f01100039000000050110027000000000011200190000000102200039000000000012004b000015c90000813d000000000002041b0000000102200039000000000012004b000015c50000413d0000001301000029000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000000101043b0000001302000029000000000002041b000000000001041b0000159b0000013d00000d92012001970000000f020000290000000000120435000000100000006b000000200200003900000000020060390000003f0120003900000d91021001970000000d01200029000000000021004b0000000002000039000000010200403900000bb90010009c0000010a0000213d00000001002001900000010a0000c13d000000400010043f0000000d010000292ec52b120000040f000000400200043d000000e30320003900000d49040000410000000000430435000000200320003900000d4a0400004100000000004304350000019d0320003900000d4b040000410000000000430435000001790320003900000d4c040000410000000000430435000000930320003900000d4d040000410000000000430435000000e40320003900000d4e040000410000000000430435000001190320003900000d4f040000410000000000430435000001390320003900000d50040000410000000000430435000001590320003900000d51040000410000000000430435000000c30320003900000d52040000410000000000430435000000530320003900000d53040000410000000000430435000000730320003900000d54040000410000000000430435000000330320003900000d55040000410000000000430435000001ba0320003900000d560400004100000000004304350000017d0320003900000d57040000410000000000430435000000a30320003900000d58040000410000000000430435000000f90320003900000d59040000410000000000430435000001c60320003900000007040000290000000004040433000000000004004b0000162f0000613d00000007050000290000002005500039000000000600001900000000073600190000000008650019000000000808043300000000008704350000002006600039000000000046004b000016280000413d0000000003340019000000000003043500000008040000290000000004040433000000000004004b0000163f0000613d00000008050000290000002005500039000000000600001900000000073600190000000008650019000000000808043300000000008704350000002006600039000000000046004b000016380000413d0000000003340019000000000003043500000009040000290000000004040433000000000004004b0000164f0000613d00000009050000290000002005500039000000000600001900000000073600190000000008650019000000000808043300000000008704350000002006600039000000000046004b000016480000413d000000000334001900000000000304350000000a040000290000000004040433000000000004004b0000165f0000613d0000000a050000290000002005500039000000000600001900000000073600190000000008650019000000000808043300000000008704350000002006600039000000000046004b000016580000413d000000000334001900000000000304350000000c040000290000000004040433000000000004004b0000166f0000613d0000000c050000290000002005500039000000000600001900000000073600190000000008650019000000000808043300000000008704350000002006600039000000000046004b000016680000413d000000000334001900000000000304350000000004010433000000000004004b0000167d0000613d0000002001100039000000000500001900000000063500190000000007510019000000000707043300000000007604350000002005500039000000000045004b000016760000413d000000000134001900000d5a030000410000000000310435000000040310003900000d5b0400004100000000004304350000002a0310003900000d5c0400004100000000004304350000000a0310003900000d5d0400004100000000004304350000002d011000390000000e030000290000000003030433000000000003004b000016960000613d000000000400001900000000051400190000001306400029000000000606043300000000006504350000002004400039000000000034004b0000168f0000413d0000000001130019000000400310003900000d5e040000410000000000430435000001510310003900000d5f040000410000000000430435000000930310003900000d60040000410000000000430435000000bf0310003900000d610400004100000000004304350000011d0310003900000d620400004100000000004304350000004b0310003900000d630400004100000000004304350000015d0310003900000d64040000410000000000430435000000200310003900000d65040000410000000000430435000000730310003900000d66040000410000000000430435000000fd0310003900000d670400004100000000004304350000009f0310003900000d68040000410000000000430435000000dd0310003900000d69040000410000000000430435000001310310003900000d6a040000410000000000430435000000530310003900000d6b040000410000000000430435000001600310003900000d6c04000041000000000043043500000d6d030000410000000000310435000000000121004900000157031000390000000000320435000001960110003900000d91031001970000000001230019000000000031004b0000000003000039000000010300403900000bb90010009c0000010a0000213d00000001003001900000010a0000c13d000000400010043f0000000003020433000000000003004b000018470000c13d00000c5a0010009c0000010a0000213d0000002002100039000000400020043f0000000002000019001300000001001d000019d90000013d0000001601000039000000000010043f000d0c8e00000045000900000000001d00000012010000290000000012010434001200000001001d001300000002001d0000000021020434000800000002001d000b00000001001d00000bb90010009c0000010a0000213d0000000d01000029000000000101041a000000010010019000000001021002700000007f0220618f000a00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000005330000c13d0000000a01000029000000200010008c000017160000413d0000000d01000029000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d0000000b030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b0000000a010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b000017160000813d000000000002041b0000000102200039000000000012004b000017120000413d0000000b010000290000001f0010008c000a0001001002180007000300100218000017370000a13d0000000d01000029000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000200200008a0000000b02200180000000000101043b0000173c0000613d000000010320008a000000050330027000000000033100190000000104300039000000200300003900000013053000290000000005050433000000000051041b00000020033000390000000101100039000000000041004b0000172f0000c13d0000173d0000013d0000000b0000006b0000174a0000613d000000080100002900000000010104330000174b0000013d00000020030000390000000b0020006c000017470000813d0000000702000029000000f80220018f00000d930220027f00000d930220016700000013033000290000000003030433000000000223016f000000000021041b0000000a0100002900000001011001bf000017500000013d0000000001000019000000010300008a0000000702300250000000000232013f000000000121016f0000000a011001af0000000d02000029000000000012041b0000000901000029000000060010008c000900010010003d000d00010020003d000016e20000413d000000400100043d00000c780010009c0000010a0000213d000000e002100039000000400020043f0000000a02000039000000000421043600000011021000290000001403000039000000000032043500000040031000390000001e0200003900000000002304350000001002100029000000280500003900000000005204350000008002100039000000500500003900000000005204350000000f051000290000005a0600003900000000006504350000000e05100029000000640600003900000000006504350000001705000039000000000605041a0000000707000039000000000075041b000000080060008c0000177e0000413d00000c8f0660009a00000c900060009c0000177e0000413d00000c9107000041000000000007041b0000000107700039000000000067004b0000177a0000413d000000000050043f0000000005010433000000ff0550018f00000c9206000041000000000056041b0000000004040433000000ff0440018f00000c9305000041000000000045041b0000000003030433000000ff0330018f00000c9404000041000000000034041b00000060031000390000000003030433000000ff0330018f00000c9504000041000000000034041b0000000002020433000000ff0220018f00000c9603000041000000000023041b000000a0021000390000000002020433000000ff0220018f00000c9703000041000000000023041b000000c0011000390000000001010433000000ff0110018f00000c9802000041000000000012041b000000400100043d001200000001001d00000c780010009c0000010a0000213d0000001202000029000000e001200039000000400010043f00000c790020009c0000010a0000213d00000012030000290000012002300039000000400020043f000000050200003900000000002104350000000000130435000001000130003900000c99020000410000000000210435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000c9a0300004100000000003204350000000a020000390000000000210435000000120300002900000011023000290000000000120435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000c9b03000041000000000032043500000014020000390000000000210435000000120200002900000040022000390000000000120435000000400100043d00000c1c0010009c0000010a0000213d0000006002100039000000400020043f000000400210003900000c9c030000410000000000320435000000200210003900000c9d03000041000000000032043500000028020000390000000000210435000000120300002900000010023000290000000000120435000000400100043d00000c5a0010009c0000010a0000213d0000002002100039000000400020043f0000000000010435000000120200002900000080022000390000000000120435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000c9e0300004100000000003204350000001e02000039000000000021043500000012030000290000000f023000290000000000120435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000c9f0300004100000000003204350000000f02000039000000000021043500000012030000290000000e0230002900000000001204350000001803000039000000000103041a0000000702000039000000000023041b000000080010008c000018b40000413d00000ca00110009a000b00000001001d00000ca10010009c000018b40000413d00130ca2000000450000180e0000013d00000013020000290000000102200039001300000002001d0000000b0020006c000018b40000813d0000001301000029000000000101041a000000010010019000000001021002700000007f0220618f000d00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000005330000c13d0000000d0000006b000018090000613d0000000d010000290000001f0010008c0000001301000029000018450000a13d0000001301000029000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000000201043b0000000d010000290000001f01100039000000050110027000000000011200190000000102200039000000000012004b000018370000813d000000000002041b0000000102200039000000000012004b000018330000413d0000001301000029000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000000101043b0000001302000029000000000002041b000000000001041b000018090000013d00000c1c0010009c0000010a0000213d0000006003100039000000400030043f000000400310003900000d2e040000410000000000430435000000200310003900000d2f04000041000000000043043500000040030000390000000000310435000000000302043300000d300030009c00000abf0000213d00000d310030009c00000abf0000213d00000d320030009c0000010a0000213d0000000203300039000000030330011a00000002043002100000003f0340003900000d91053001970000003f0350003900000d9103300197000000400600043d0000000003360019001300000006001d000000000063004b0000000006000039000000010600403900000bb90030009c0000010a0000213d00000001006001900000010a0000c13d000000400030043f00000013030000290000002003300039000000000005004b000018780000613d0000000005530019000000000600003100000002066003670000000007030019000000006806043c0000000007870436000000000057004b000018740000c13d0000001305000029000000000045043500000000050204330000000004250019000000000024004b000018ac0000a13d000000010110003900000000050200190000000305500039000000000605043300000012076002700000003f0770018f00000000071700190000000007070433000000f807700210000000000803043300000d3308800197000000000778019f00000000007304350000000c076002700000003f0770018f00000000071700190000000007070433000000f8077002100000000108300039000000000908043300000d3309900197000000000779019f000000000078043500000006076002700000003f0770018f00000000071700190000000007070433000000f8077002100000000208300039000000000908043300000d3309900197000000000779019f00000000007804350000003f0660018f00000000061600190000000006060433000000f8066002100000000307300039000000000807043300000d3308800197000000000668019f00000000006704350000000403300039000000000045004b000018800000413d0000000005020433000000031050011a000000020010008c000019d70000613d000000010010008c000019db0000c13d00000d3502000041000000020130008a000019d90000013d0000001801000039000000000010043f000d0ca300000045000900000000001d00000012010000290000000012010434001200000001001d001300000002001d0000000021020434000800000002001d000b00000001001d00000bb90010009c0000010a0000213d0000000d01000029000000000101041a000000010010019000000001021002700000007f0220618f000a00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000005330000c13d0000000a01000029000000200010008c000018ec0000413d0000000d01000029000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d0000000b030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b0000000a010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b000018ec0000813d000000000002041b0000000102200039000000000012004b000018e80000413d0000000b010000290000001f0010008c000a00010010021800070003001002180000190d0000a13d0000000d01000029000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000200200008a0000000b02200180000000000101043b000019120000613d000000010320008a000000050330027000000000033100190000000104300039000000200300003900000013053000290000000005050433000000000051041b00000020033000390000000101100039000000000041004b000019050000c13d000019130000013d0000000b0000006b000019200000613d00000008010000290000000001010433000019210000013d00000020030000390000000b0020006c0000191d0000813d0000000702000029000000f80220018f00000d930220027f00000d930220016700000013033000290000000003030433000000000223016f000000000021041b0000000a0100002900000001011001bf000019260000013d0000000001000019000000010300008a0000000702300250000000000232013f000000000121016f0000000a011001af0000000d02000029000000000012041b0000000901000029000000060010008c000900010010003d000d00010020003d000018b80000413d000000400100043d001200000001001d00000c780010009c0000010a0000213d0000001202000029000000e001200039000000400010043f00000c790020009c0000010a0000213d00000012030000290000012002300039000000400020043f000000050200003900000000002104350000000000130435000001000130003900000ca4020000410000000000210435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000ca503000041000000000032043500000005020000390000000000210435000000120300002900000011023000290000000000120435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000ca603000041000000000032043500000009020000390000000000210435000000120200002900000040022000390000000000120435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000ca703000041000000000032043500000004020000390000000000210435000000120300002900000010023000290000000000120435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000c6e03000041000000000032043500000004020000390000000000210435000000120200002900000080022000390000000000120435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000ca80300004100000000003204350000000702000039000000000021043500000012030000290000000f023000290000000000120435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000ca90300004100000000003204350000000402000039000000000021043500000012030000290000000e0230002900000000001204350000001903000039000000000103041a0000000702000039000000000023041b000000080010008c00001a250000413d00000caa0110009a000b00000001001d00000cab0010009c00001a250000413d00130cac000000450000199e0000013d00000013020000290000000102200039001300000002001d0000000b0020006c00001a250000813d0000001301000029000000000101041a000000010010019000000001021002700000007f0220618f000d00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000005330000c13d0000000d0000006b000019990000613d0000000d010000290000001f0010008c0000001301000029000019d50000a13d0000001301000029000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000000201043b0000000d010000290000001f01100039000000050110027000000000011200190000000102200039000000000012004b000019c70000813d000000000002041b0000000102200039000000000012004b000019c30000413d0000001301000029000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000000101043b0000001302000029000000000002041b000000000001041b000019990000013d00000d3402000041000000010130008a0000000000210435001100140000002d000000400300043d001000000003001d000000200130003900000d6e020000410000000000210435000000370230003900000012010000292ec520370000040f000000220210003900000d6f03000041000000000032043500000d70020000410000000000210435000000020210003900000d710300004100000000003204350000003f0210003900000d720300004100000000003204350000004e021000390000000b010000292ec520370000040f00000d7302000041000000000021043500000d74020000410000000203100039000000000023043500000d750200004100000022031000390000000000230435000000260210003900000011010000292ec520370000040f00000d7002000041000000000021043500000d76020000410000000203100039000000000023043500000d7702000041000000220310003900000000002304350000002a0210003900000013010000292ec520370000040f00000d41020000410000000000210435000000100300002900000000013100490000001e0210008a0000000000230435000000020210003900000000010300192ec51f0f0000040f00000010010000292ec52e080000040f00000d7802000041000000400400043d001300000004001d000000200340003900000000002304350000003d024000392ec520370000040f00000013030000290000000002310049000000200120008a000000000013043500000000010300192ec51f0f0000040f000000400100043d001200000001001d00000013020000292ec51edd0000040f00000012020000290000047f0000013d0000001901000039000000000010043f000d0cad00000045000900000000001d00000012010000290000000012010434001200000001001d001300000002001d0000000021020434000800000002001d000b00000001001d00000bb90010009c0000010a0000213d0000000d01000029000000000101041a000000010010019000000001021002700000007f0220618f000a00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000005330000c13d0000000a01000029000000200010008c00001a5d0000413d0000000d01000029000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d0000000b030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b0000000a010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00001a5d0000813d000000000002041b0000000102200039000000000012004b00001a590000413d0000000b010000290000001f0010008c000a000100100218000700030010021800001a7e0000a13d0000000d01000029000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000200200008a0000000b02200180000000000101043b00001a830000613d000000010320008a000000050330027000000000033100190000000104300039000000200300003900000013053000290000000005050433000000000051041b00000020033000390000000101100039000000000041004b00001a760000c13d00001a840000013d0000000b0000006b00001a910000613d0000000801000029000000000101043300001a920000013d00000020030000390000000b0020006c00001a8e0000813d0000000702000029000000f80220018f00000d930220027f00000d930220016700000013033000290000000003030433000000000223016f000000000021041b0000000a0100002900000001011001bf00001a970000013d0000000001000019000000010300008a0000000702300250000000000232013f000000000121016f0000000a011001af0000000d02000029000000000012041b0000000901000029000000060010008c000900010010003d000d00010020003d00001a290000413d000000400100043d00000c780010009c0000010a0000213d000000e002100039000000400020043f0000000a02000039000000000421043600000011021000290000001403000039000000000032043500000040031000390000001e0200003900000000002304350000001002100029000000280500003900000000005204350000008002100039000000500500003900000000005204350000000f051000290000005a0600003900000000006504350000000e05100029000000640600003900000000006504350000001a05000039000000000605041a0000000707000039000000000075041b000000080060008c00001ac50000413d00000cae0660009a00000caf0060009c00001ac50000413d00000cb007000041000000000007041b0000000107700039000000000067004b00001ac10000413d000000000050043f0000000005010433000000ff0550018f00000cb106000041000000000056041b0000000004040433000000ff0440018f00000cb205000041000000000045041b0000000003030433000000ff0330018f00000cb304000041000000000034041b00000060031000390000000003030433000000ff0330018f00000cb404000041000000000034041b0000000002020433000000ff0220018f00000cb503000041000000000023041b000000a0021000390000000002020433000000ff0220018f00000cb603000041000000000023041b000000c0011000390000000001010433000000ff0110018f00000cb702000041000000000012041b000000400100043d001200000001001d00000cb80010009c0000010a0000213d0000001202000029000001a001200039000000400010043f00000c440020009c0000010a0000213d00000012050000290000022002500039000000400020043f00000050020000390000000000210435000002000350003900000cb9020000410000000000230435000001e00350003900000cba040000410000000000430435000001c00350003900000cbb0400004100000000004304350000000000150435000000400100043d00000cbc0010009c0000010a0000213d0000008003100039000000400030043f00000060031000390000000000230435000000400210003900000cbd030000410000000000320435000000200210003900000cbe03000041000000000032043500000050020000390000000000210435000d00200000002d000000120300002900000020023000290000000000120435000000400200043d00000cbc0020009c0000010a0000213d0000008001200039000000400010043f000000600320003900000cb9010000410000000000130435000000400320003900000cbf040000410000000000430435000000200320003900000cc004000041000000000043043500000050030000390000000000320435000000120300002900000040033000390000000000230435000000400200043d00000cbc0020009c0000010a0000213d0000008003200039000000400030043f00000060032000390000000000130435000000400120003900000cc1030000410000000000310435000000200120003900000cc203000041000000000031043500000050010000390000000000120435000b001e0000002d00000012030000290000001e013000290000000000210435000000400100043d00000c5a0010009c0000010a0000213d0000002002100039000000400020043f0000000000010435000000120200002900000080022000390000000000120435000000400200043d00000cbc0020009c0000010a0000213d0000008001200039000000400010043f000000600320003900000cc3010000410000000000130435000000400320003900000cc4040000410000000000430435000000200320003900000cc504000041000000000043043500000050030000390000000000320435000a001d0000002d00000012040000290000001d034000290000000000230435000000400200043d00000cbc0020009c0000010a0000213d0000008003200039000000400030043f00000060032000390000000000130435000000400120003900000cc6030000410000000000310435000000200120003900000cc70300004100000000003104350000005001000039000000000012043500000012030000290000000e013000290000000000210435000000400200043d00000cbc0020009c0000010a0000213d0000008001200039000000400010043f000000600320003900000cc3010000410000000000130435000000400320003900000cc8040000410000000000430435000000200320003900000cc904000041000000000043043500000050030000390000000000320435000e001b0000002d00000012040000290000001b034000290000000000230435000000400200043d00000cbc0020009c0000010a0000213d0000008003200039000000400030043f00000060032000390000000000130435000000400120003900000cca030000410000000000310435000000200120003900000ccb030000410000000000310435000000500100003900000000001204350009001a0000002d00000012030000290000001a013000290000000000210435000000400100043d00000cbc0010009c0000010a0000213d0000008002100039000000400020043f000000600210003900000cc3030000410000000000320435000000400210003900000ccc030000410000000000320435000000200210003900000ccd03000041000000000032043500000050020000390000000000210435000800190000002d000000120300002900000019023000290000000000120435000000400100043d00000cbc0010009c0000010a0000213d0000008002100039000000400020043f000000600210003900000cce030000410000000000320435000000400210003900000ccf030000410000000000320435000000200210003900000cd003000041000000000032043500000046020000390000000000210435000700180000002d000000120300002900000018023000290000000000120435000000400100043d00000cbc0010009c0000010a0000213d0000008002100039000000400020043f000000600210003900000cd1030000410000000000320435000000400210003900000cd2030000410000000000320435000000200210003900000cd303000041000000000032043500000046020000390000000000210435000600170000002d000000120300002900000017023000290000000000120435000000400100043d00000cbc0010009c0000010a0000213d0000008002100039000000400020043f000000600210003900000cd4030000410000000000320435000000400210003900000cd5030000410000000000320435000000200210003900000cd603000041000000000032043500000046020000390000000000210435000500160000002d0000001203000029000000160230002900000000001204350000001b03000039000000000103041a0000000d02000039000000000023041b0000000e0010008c00001c260000413d00000cd70110009a001000000001001d00000cd80010009c00001c260000413d00130cd90000004500001bed0000013d00000013020000290000000102200039001300000002001d000000100020006c00001c260000813d0000001301000029000000000101041a000000010010019000000001021002700000007f0220618f001100000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000005330000c13d000000110000006b00001be80000613d00000011010000290000001f0010008c000000130100002900001c240000a13d0000001301000029000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000000201043b00000011010000290000001f01100039000000050110027000000000011200190000000102200039000000000012004b00001c160000813d000000000002041b0000000102200039000000000012004b00001c120000413d0000001301000029000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000000101043b0000001302000029000000000002041b000000000001041b00001be80000013d0000001b01000039000000000010043f00110cda00000045000400000000001d00000012010000290000000012010434001200000001001d001300000002001d0000000021020434000300000002001d001000000001001d00000bb90010009c0000010a0000213d0000001101000029000000000101041a000000010010019000000001021002700000007f0220618f000f00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000005330000c13d0000000f01000029000000200010008c00001c5e0000413d0000001101000029000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d00000010030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b0000000f010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00001c5e0000813d000000000002041b0000000102200039000000000012004b00001c5a0000413d00000010010000290000001f0010008c000f000100100218000200030010021800001c7f0000a13d0000001101000029000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000200200008a0000001002200180000000000101043b00001c840000613d000000010320008a000000050330027000000000033100190000000104300039000000200300003900000013053000290000000005050433000000000051041b00000020033000390000000101100039000000000041004b00001c770000c13d00001c850000013d000000100000006b00001c920000613d0000000301000029000000000101043300001c930000013d0000002003000039000000100020006c00001c8f0000813d0000000202000029000000f80220018f00000d930220027f00000d930220016700000013033000290000000003030433000000000223016f000000000021041b0000000f0100002900000001011001bf00001c980000013d0000000001000019000000010300008a0000000202300250000000000232013f000000000121016f0000000f011001af0000001102000029000000000012041b00000004010000290000000c0010008c000400010010003d001100010020003d00001c2a0000413d000000400100043d001200000001001d00000cb80010009c0000010a0000213d0000001202000029000001a001200039000000400010043f00000cdb0020009c0000010a0000213d0000001203000029000001e002300039000000400020043f0000000f0200003900000000002104350000000000130435000001c00130003900000cdc020000410000000000210435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000cdd0300004100000000003204350000001002000039000000000021043500000012030000290000000d023000290000000000120435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000cde0300004100000000003204350000000e020000390000000000210435000000120200002900000040022000390000000000120435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000cdf0300004100000000003204350000000e02000039000000000021043500000012030000290000000b023000290000000000120435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000c6e03000041000000000032043500000004020000390000000000210435000000120200002900000080022000390000000000120435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000ce00300004100000000003204350000001002000039000000000021043500000012030000290000000a023000290000000000120435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000ce10300004100000000003204350000001402000039000000000021043500000012020000290001001c0000002d0000001c022000290000000000120435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000ce20300004100000000003204350000001002000039000000000021043500000012030000290000000e023000290000000000120435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000ce303000041000000000032043500000011020000390000000000210435000000120300002900000009023000290000000000120435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000ce403000041000000000032043500000010020000390000000000210435000000120300002900000008023000290000000000120435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000ce50300004100000000003204350000000e020000390000000000210435000000120300002900000007023000290000000000120435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000ce60300004100000000003204350000000f020000390000000000210435000000120300002900000006023000290000000000120435000000400100043d00000bb60010009c0000010a0000213d0000004002100039000000400020043f000000200210003900000ce70300004100000000003204350000000f0200003900000000002104350000001203000029000000050230002900000000001204350000001c03000039000000000103041a0000000d02000039000000000023041b0000000e0010008c00001d980000413d00000ce80110009a001000000001001d00000ce90010009c00001d980000413d00130cea0000004500001d5f0000013d00000013020000290000000102200039001300000002001d000000100020006c00001d980000813d0000001301000029000000000101041a000000010010019000000001021002700000007f0220618f001100000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000005330000c13d000000110000006b00001d5a0000613d00000011010000290000001f0010008c000000130100002900001d960000a13d0000001301000029000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000000201043b00000011010000290000001f01100039000000050110027000000000011200190000000102200039000000000012004b00001d880000813d000000000002041b0000000102200039000000000012004b00001d840000413d0000001301000029000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000000101043b0000001302000029000000000002041b000000000001041b00001d5a0000013d0000001c01000039000000000010043f00110ceb00000045000400000000001d00000012010000290000000012010434001200000001001d001300000002001d0000000021020434000300000002001d001000000001001d00000bb90010009c0000010a0000213d0000001101000029000000000101041a000000010010019000000001021002700000007f0220618f000f00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000005330000c13d0000000f01000029000000200010008c00001dd00000413d0000001101000029000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d00000010030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b0000000f010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00001dd00000813d000000000002041b0000000102200039000000000012004b00001dcc0000413d00000010010000290000001f0010008c000f000100100218000200030010021800001df10000a13d0000001101000029000000000010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000000540000613d000000200200008a0000001002200180000000000101043b00001df60000613d000000010320008a000000050330027000000000033100190000000104300039000000200300003900000013053000290000000005050433000000000051041b00000020033000390000000101100039000000000041004b00001de90000c13d00001df70000013d000000100000006b00001e040000613d0000000301000029000000000101043300001e050000013d0000002003000039000000100020006c00001e010000813d0000000202000029000000f80220018f00000d930220027f00000d930220016700000013033000290000000003030433000000000223016f000000000021041b0000000f0100002900000001011001bf00001e0a0000013d0000000001000019000000010300008a0000000202300250000000000232013f000000000121016f0000000f011001af0000001102000029000000000012041b00000004010000290000000c0010008c000400010010003d001100010020003d00001d9c0000413d000000400100043d00000cb80010009c0000010a0000213d000001a002100039000000400020043f000000050200003900000000002104350000000d021000290000000a03000039000000000032043500000040021000390000000f0300003900000000003204350000000b02100029000000140300003900000000003204350000008002100039000000320300003900000000003204350000000a021000290000003a0300003900000000003204350000000102100029000000420300003900000000003204350000000e021000290000004a03000039000000000032043500000009021000290000005203000039000000000032043500000008021000290000005b03000039000000000032043500000007021000290000005e0300003900000000003204350000000602100029000000610300003900000000003204350000000502100029000000640300003900000000003204350000001d02000039000000000302041a0000000d04000039000000000042041b0000000e0030008c00001e4a0000413d00000cec0330009a00000ced0030009c00001e4a0000413d00000cee04000041000000000004041b0000000104400039000000000034004b00001e460000413d000000000020043f00000000020000190000000013010434000000ff0330018f00000cec0420009a000000000034041b0000000c0020008c000000010220003900001e4c0000413d00000001010000390000001e02000039000000000012041b000009c4010000390000002302000039000000000012041b00000cef010000410000002402000039000000000012041b0000002501000039000000000201041a00000d9202200197000000000021041b00000026010000390000006402000039000000000021041b0000002701000039000000000021041b00000cf0010000410000000000100443000000000100041400000bb20010009c00000bb201008041000000c00110021000000cf1011001c70000800b020000392ec52ec00000040f000000010020019000001e940000613d000000000201043b000000000002004b00000abf0000613d001300000002001d00150001002000920000800b0100003900000024030000390000000004000415000000150440008a000000050440021000000cf2020000412ec52ea40000040f0000002002000039000000000012041b00000021010000390000001302000029000000000021041b0000001f01000039000000000201041a00000bc0022001970000000c022001af000000000021041b00000bb5010000410000001f0110017f0000002202000039000000000302041a00000bc003300197000000000113019f000000000012041b00000000010004112ec51e950000040f00000020010000390000010000100443000001200000044300000cf30100004100002ec60001042e000000000001042f00000bb5061001970000000901000039000000000201041a00000bc003200197000000000363019f000000000031041b000000000100041400000bb50520019700000bb20010009c00000bb201008041000000c00110021000000bc1011001c70000800d02000039000000030300003900000bc2040000412ec52ebb0000040f000000010020019000001ea80000613d000000000001042d000000000100001900002ec70001043000000bb501100197000000000010043f0000002801000039000000200010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000d38011001c700008010020000392ec52ec00000040f000000010020019000001eb90000613d000000000101043b000000000001042d000000000100001900002ec70001043000000bb502200197000000000020043f000000200010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000d38011001c700008010020000392ec52ec00000040f000000010020019000001ec90000613d000000000101043b000000000001042d000000000100001900002ec70001043000000000430104340000000001320436000000000003004b00001ed70000613d000000000200001900000000051200190000000006240019000000000606043300000000006504350000002002200039000000000032004b00001ed00000413d000000000213001900000000000204350000001f0230003900000d91022001970000000001210019000000000001042d00000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b00001eec0000613d000000000400001900000000051400190000000006430019000000000606043300000000006504350000002004400039000000000024004b00001ee50000413d000000000312001900000000000304350000001f0220003900000d91022001970000000001120019000000000001042d00000d450010009c00001f020000213d000000630010008c00001f020000a13d00000002030003670000000401300370000000000101043b00000bb50010009c00001f020000213d0000002402300370000000000202043b00000bb50020009c00001f020000213d0000004403300370000000000303043b000000000001042d000000000100001900002ec70001043000000d940010009c00001f090000813d0000002001100039000000400010043f000000000001042d00000d4701000041000000000010043f0000004101000039000000040010043f00000d480100004100002ec7000104300000001f0220003900000d91022001970000000001120019000000000021004b0000000002000039000000010200403900000bb90010009c00001f1b0000213d000000010020019000001f1b0000c13d000000400010043f000000000001042d00000d4701000041000000000010043f0000004101000039000000040010043f00000d480100004100002ec7000104300007000000000002000300000002001d000500000001001d000600000003001d000000000003004b000020130000613d0000000601000029000000000010043f0000000401000039000000200010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000d38011001c700008010020000392ec52ec00000040f0000000100200190000020110000613d000000000101043b000000000101041a000000000001004b00001f4f0000c13d000000000100041a000000060010006c000020130000a13d0000000602000029000000010220008a000700000002001d000000000020043f0000000401000039000000200010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000d38011001c700008010020000392ec52ec00000040f0000000100200190000020110000613d000000000101043b000000000101041a000000000001004b000000070200002900001f3c0000613d00000d4200100198000020130000c13d000000050200002900000bb502200197000400000001001d00000bb501100197000700000002001d000000000021004b000020170000c13d0000000601000029000000000010043f0000000601000039000000200010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000d38011001c700008010020000392ec52ec00000040f0000000100200190000020110000613d000000000201043b000000000302041a000000000100041100000bb504100197000000070040006c00001f900000613d000000000034004b00001f900000613d000500000004001d000100000003001d000200000002001d0000000701000029000000000010043f0000000701000039000000200010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000d38011001c700008010020000392ec52ec00000040f0000000100200190000020110000613d000000000101043b0000000502000029000000000020043f000000200010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000d38011001c700008010020000392ec52ec00000040f0000000100200190000020110000613d000000000101043b000000000101041a000000ff0010019000000002020000290000000103000029000020200000613d000000000003004b00001f930000613d000000000002041b0000000701000029000000000010043f0000000501000039000000200010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000d38011001c700008010020000392ec52ec00000040f0000000100200190000020110000613d000000000101043b000000000201041a000000010220008a000000000021041b000000030100002900000bb501100197000500000001001d000000000010043f0000000501000039000000200010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000d38011001c700008010020000392ec52ec00000040f0000000100200190000020110000613d000000000101043b000000000201041a0000000102200039000000000021041b00000d97010000410000000000100443000000000100041400000bb20010009c00000bb201008041000000c00110021000000cf1011001c70000800b020000392ec52ec00000040f00000001002001900000201b0000613d000000000101043b000300000001001d0000000601000029000000000010043f0000000401000039000000200010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000d38011001c700008010020000392ec52ec00000040f0000000100200190000020110000613d0000000302000029000000a00220021000000005022001af00000d98022001c7000000000101043b000000000021041b000000040100002900000d9800100198000020000000c13d00000006010000290000000101100039000300000001001d000000000010043f0000000401000039000000200010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000d38011001c700008010020000392ec52ec00000040f0000000100200190000020110000613d000000000101043b000000000101041a000000000001004b000020000000c13d000000000100041a000000030010006b000020000000613d0000000301000029000000000010043f0000000401000039000000200010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000d38011001c700008010020000392ec52ec00000040f0000000100200190000020110000613d000000000101043b0000000402000029000000000021041b000000000100041400000bb20010009c00000bb201008041000000c00110021000000bc1011001c70000800d02000039000000040300003900000d99040000410000000705000029000000050600002900000006070000292ec52ebb0000040f0000000100200190000020110000613d000000050000006b0000201c0000613d000000000001042d000000000100001900002ec70001043000000d8a01000041000000000010043f00000d440100004100002ec70001043000000d9501000041000000000010043f00000d440100004100002ec700010430000000000001042f00000d9a01000041000000000010043f00000d440100004100002ec70001043000000d9601000041000000000010043f00000d440100004100002ec700010430000000000001004b000020270000613d000000000001042d000000400100043d000000440210003900000d8303000041000000000032043500000d280200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000000000032043500000bb20010009c00000bb201008041000000400110021000000d7a011001c700002ec7000104300000000031010434000000000001004b000020420000613d000000000400001900000000052400190000000006430019000000000606043300000000006504350000002004400039000000000014004b0000203b0000413d00000000012100190000000000010435000000000001042d0008000000000002000000000001004b000022d00000613d000000000200041a000000000012004b000022d00000a13d000700000001001d000800000001001d000000000010043f0000000401000039000000200010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000d38011001c700008010020000392ec52ec00000040f0000000100200190000022bc0000613d000000000101043b000000000101041a000000000001004b000020670000c13d0000000801000029000000000001004b000000010110008a0000204c0000c13d00000d4701000041000000000010043f0000001101000039000000040010043f00000d480100004100002ec70001043000000d42001001980000000701000029000022d00000c13d000000000010043f0000000a01000039000000200010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000d38011001c700008010020000392ec52ec00000040f0000000100200190000022bc0000613d000000400200043d00000d9b0020009c000022be0000813d000000000301043b000000c001200039000000400010043f000000000103041a00000000051204360000000104300039000000000404041a000800000005001d00000000004504350000000204300039000000000404041a0000004005200039000700000005001d00000000004504350000000304300039000000000404041a0000006005200039000600000005001d00000000004504350000000404300039000000000404041a0000008005200039000500000005001d0000000000450435000000a0042000390000000502300039000000000202041a000400000004001d00000000002404350000000c02000039000000000302041a000000000013004b000022c40000a13d000000000020043f00000bfd0510009a000000000205041a000000010320019000000001062002700000007f0660618f0000001f0060008c00000000040000390000000104002039000000000043004b000022ca0000c13d000000400100043d0000000004610436000000000003004b000020c50000613d000100000004001d000300000006001d000200000001001d000000000050043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000022bc0000613d0000000306000029000000000006004b000020cb0000613d000000000201043b0000000005000019000000020100002900000001070000290000000003750019000000000402041a000000000043043500000001022000390000002005500039000000000065004b000020bd0000413d000020cd0000013d00000d92022001970000000000240435000000000006004b00000020050000390000000005006039000020cd0000013d000000000500001900000002010000290000003f0350003900000d91023001970000000003120019000000000023004b0000000002000039000000010200403900000bb90030009c000022be0000213d0000000100200190000022be0000c13d000000400030043f2ec52b120000040f000000080200002900000000040204330000000f02000039000000000302041a000000000043004b000022c40000a13d000000000020043f00000c280540009a000000000205041a000000010320019000000001062002700000007f0660618f0000001f0060008c00000000040000390000000104002039000000000442013f0000000100400190000022ca0000c13d000800000001001d000000400100043d0000000004610436000000000003004b0000210c0000613d000100000004001d000300000006001d000200000001001d000000000050043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000022bc0000613d0000000306000029000000000006004b000021120000613d000000000201043b0000000005000019000000020100002900000001070000290000000003750019000000000402041a000000000043043500000001022000390000002005500039000000000065004b000021040000413d000021140000013d00000d92022001970000000000240435000000000006004b00000020050000390000000005006039000021140000013d000000000500001900000002010000290000003f0350003900000d91023001970000000003120019000000000023004b0000000002000039000000010200403900000bb90030009c000022be0000213d0000000100200190000022be0000c13d000000400030043f2ec52b120000040f000000070200002900000000040204330000001202000039000000000302041a000000000043004b000022c40000a13d000000000020043f00000c5f0540009a000000000205041a000000010320019000000001062002700000007f0660618f0000001f0060008c00000000040000390000000104002039000000000442013f0000000100400190000022ca0000c13d000700000001001d000000400100043d0000000004610436000000000003004b000021530000613d000100000004001d000200000006001d000300000001001d000000000050043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000022bc0000613d0000000206000029000000000006004b000021590000613d000000000201043b0000000005000019000000030100002900000001070000290000000003750019000000000402041a000000000043043500000001022000390000002005500039000000000065004b0000214b0000413d0000215b0000013d00000d92022001970000000000240435000000000006004b000000200500003900000000050060390000215b0000013d000000000500001900000003010000290000003f0350003900000d91023001970000000003120019000000000023004b0000000002000039000000010200403900000bb90030009c000022be0000213d0000000100200190000022be0000c13d000000400030043f2ec52b120000040f000000060200002900000000040204330000001502000039000000000302041a000000000043004b000022c40000a13d000000000020043f00000c810540009a000000000205041a000000010320019000000001062002700000007f0660618f0000001f0060008c00000000040000390000000104002039000000000442013f0000000100400190000022ca0000c13d000600000001001d000000400100043d0000000004610436000000000003004b0000219a0000613d000100000004001d000300000006001d000200000001001d000000000050043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000022bc0000613d0000000306000029000000000006004b000021a00000613d000000000201043b0000000005000019000000020100002900000001070000290000000003750019000000000402041a000000000043043500000001022000390000002005500039000000000065004b000021920000413d000021a20000013d00000d92022001970000000000240435000000000006004b00000020050000390000000005006039000021a20000013d000000000500001900000002010000290000003f0350003900000d91023001970000000003120019000000000023004b0000000002000039000000010200403900000bb90030009c000022be0000213d0000000100200190000022be0000c13d000000400030043f2ec52b120000040f0000000005010019000000050100002900000000010104330000001802000039000000000302041a000000000013004b000022c40000a13d000000000020043f00000ca00610009a000000000206041a000000010320019000000001072002700000007f0770618f0000001f0070008c00000000040000390000000104002039000000000442013f0000000100400190000022ca0000c13d000500000005001d000000400100043d0000000004710436000000000003004b000021e20000613d000100000004001d000300000007001d000200000001001d000000000060043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000022bc0000613d0000000306000029000000000006004b000021e80000613d000000000201043b0000000005000019000000020100002900000001070000290000000003750019000000000402041a000000000043043500000001022000390000002005500039000000000065004b000021da0000413d000021ea0000013d00000d92022001970000000000240435000000000007004b00000020050000390000000005006039000021ea0000013d000000000500001900000002010000290000003f0350003900000d91023001970000000003120019000000000023004b0000000002000039000000010200403900000bb90030009c000022be0000213d0000000100200190000022be0000c13d000000400030043f2ec52b120000040f0000000005010019000000040100002900000000010104330000001b02000039000000000302041a000000000013004b000022c40000a13d000000000020043f00000cd70610009a000000000206041a000000010320019000000001072002700000007f0770618f0000001f0070008c00000000040000390000000104002039000000000442013f0000000100400190000022ca0000c13d000000400100043d0000000004710436000000000003004b000300000005001d0000222a0000613d000100000004001d000400000007001d000200000001001d000000000060043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f0000000100200190000022bc0000613d0000000407000029000000000007004b000022300000613d000000000201043b0000000006000019000000020100002900000001080000290000000003860019000000000402041a000000000043043500000001022000390000002006600039000000000076004b000022220000413d000022320000013d00000d92022001970000000000240435000000000007004b00000020060000390000000006006039000022320000013d000000000600001900000002010000290000003f0360003900000d91023001970000000003120019000000000023004b0000000002000039000000010200403900000bb90030009c000022be0000213d0000000100200190000022be0000c13d000000400030043f2ec52b120000040f000000400200043d000000800320003900000d9c040000410000000000430435000000200320003900000d59040000410000000000430435000000b20320003900000d9d040000410000000000430435000000400320003900000d9e040000410000000000430435000000600320003900000d9f040000410000000000430435000000920320003900000da0040000410000000000430435000000bf0320003900000008050000290000000004050433000000000004004b0000225f0000613d0000002005500039000000000600001900000000073600190000000008650019000000000808043300000000008704350000002006600039000000000046004b000022580000413d0000000003340019000000000003043500000007050000290000000004050433000000000004004b0000226e0000613d0000002005500039000000000600001900000000073600190000000008650019000000000808043300000000008704350000002006600039000000000046004b000022670000413d0000000003340019000000000003043500000006050000290000000004050433000000000004004b0000227d0000613d0000002005500039000000000600001900000000073600190000000008650019000000000808043300000000008704350000002006600039000000000046004b000022760000413d0000000003340019000000000003043500000005050000290000000004050433000000000004004b0000228c0000613d0000002005500039000000000600001900000000073600190000000008650019000000000808043300000000008704350000002006600039000000000046004b000022850000413d0000000003340019000000000003043500000003050000290000000004050433000000000004004b0000229b0000613d0000002005500039000000000600001900000000073600190000000008650019000000000808043300000000008704350000002006600039000000000046004b000022940000413d000000000334001900000000000304350000000004010433000000000004004b000022a90000613d0000002001100039000000000500001900000000063500190000000007510019000000000707043300000000007604350000002005500039000000000045004b000022a20000413d000000000134001900000d5b03000041000000000031043500000000012100490000001a0310008a0000000000320435000000250110003900000d91031001970000000001230019000000000031004b0000000003000039000000010300403900000bb90010009c000022be0000213d0000000100300190000022be0000c13d000000400010043f0000000001020019000000000001042d000000000100001900002ec70001043000000d4701000041000000000010043f0000004101000039000000040010043f00000d480100004100002ec70001043000000d4701000041000000000010043f0000003201000039000000040010043f00000d480100004100002ec70001043000000d4701000041000000000010043f0000002201000039000000040010043f00000d480100004100002ec700010430000000400100043d000000440210003900000d7903000041000000000032043500000024021000390000001403000039000000000032043500000d2802000041000000000021043500000004021000390000002003000039000000000032043500000bb20010009c00000bb201008041000000400110021000000d7a011001c700002ec700010430000a000000000002000100000004001d000500000002001d000600000001001d000700000003001d000000000003004b000024630000613d0000000701000029000000000010043f0000000401000039000000200010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000d38011001c700008010020000392ec52ec00000040f0000000100200190000024610000613d000000000101043b000000000101041a000000000001004b000023100000c13d000000000100041a000000070010006c000024630000a13d0000000702000029000000010220008a000800000002001d000000000020043f0000000401000039000000200010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000d38011001c700008010020000392ec52ec00000040f0000000100200190000024610000613d000000000101043b000000000101041a000000000001004b0000000802000029000022fd0000613d00000d4200100198000024630000c13d000000060200002900000bb502200197000300000001001d00000bb501100197000800000002001d000000000021004b000024680000c13d0000000701000029000000000010043f0000000601000039000000200010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000d38011001c700008010020000392ec52ec00000040f0000000100200190000024610000613d000000000301043b000000000403041a000000000100041100000bb502100197000400000002001d000000080020006c000023510000613d000000040040006b000023510000613d000200000004001d000600000003001d0000000801000029000000000010043f0000000701000039000000200010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000d38011001c700008010020000392ec52ec00000040f0000000100200190000024610000613d000000000101043b0000000402000029000000000020043f000000200010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000d38011001c700008010020000392ec52ec00000040f0000000100200190000024610000613d000000000101043b000000000101041a000000ff0010019000000006030000290000000204000029000024700000613d000000000004004b000023540000613d000000000003041b0000000801000029000000000010043f0000000501000039000000200010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000d38011001c700008010020000392ec52ec00000040f0000000100200190000024610000613d000000000101043b000000000201041a000000010220008a000000000021041b000000050100002900000bb501100197000600000001001d000000000010043f0000000501000039000000200010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000d38011001c700008010020000392ec52ec00000040f0000000100200190000024610000613d000000000101043b000000000201041a0000000102200039000000000021041b00000d97010000410000000000100443000000000100041400000bb20010009c00000bb201008041000000c00110021000000cf1011001c70000800b020000392ec52ec00000040f0000000100200190000024670000613d000000000101043b000200000001001d0000000701000029000000000010043f0000000401000039000000200010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000d38011001c700008010020000392ec52ec00000040f0000000100200190000024610000613d0000000202000029000000a0022002100000000606000029000000000262019f00000d98022001c7000000000101043b000000000021041b000000030100002900000d9800100198000023c40000c13d00000007010000290000000101100039000200000001001d000000000010043f0000000401000039000000200010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000d38011001c700008010020000392ec52ec00000040f0000000100200190000024610000613d000000000101043b000000000101041a000000000001004b0000000606000029000023c40000c13d000000000100041a000000020010006b000023c40000613d0000000201000029000000000010043f0000000401000039000000200010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000d38011001c700008010020000392ec52ec00000040f0000000100200190000024610000613d000000000101043b0000000302000029000000000021041b0000000606000029000000000100041400000bb20010009c00000bb201008041000000c00110021000000bc1011001c70000800d02000039000000040300003900000d9904000041000000080500002900000007070000292ec52ebb0000040f0000000100200190000024610000613d000000060000006b0000246c0000613d00000da101000041000000000010044300000005010000290000000400100443000000000100041400000bb20010009c00000bb201008041000000c00110021000000d85011001c700008002020000392ec52ec00000040f0000000100200190000024670000613d000000000101043b000000000001004b000024600000613d0000000008000415000000400b00043d0000006401b00039000000800700003900000000007104350000004401b00039000000070200002900000000002104350000002401b000390000000802000029000000000021043500000da20100004100000000001b04350000000401b00039000000040200002900000000002104350000008403b00039000000010100002900000000210104340000000000130435000000a403b00039000000000001004b000024020000613d000000000400001900000000053400190000000006420019000000000606043300000000006504350000002004400039000000000014004b000023fb0000413d0000000002310019000000000002043500000000040004140000000602000029000000040020008c000024100000c13d00000000050004150000000a0550008a00000005055002100000000103000031000000200030008c00000020040000390000000004034019000024480000013d000700000008001d000500000007001d0000001f0110003900000d9101100197000000a40110003900000bb20010009c00000bb201008041000000600110021000000bb200b0009c00000bb20300004100000000030b40190000004003300210000000000131019f00000bb20040009c00000bb204008041000000c003400210000000000113019f00080000000b001d2ec52ebb0000040f000000080b000029000000600310027000000bb203300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000024330000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000242f0000c13d000000000006004b000024400000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000005000415000000090550008a00000005055002100000000100200190000024740000613d00000007080000290000001f01400039000000600210018f0000000001b20019000000000021004b0000000002000039000000010200403900000bb90010009c000024a60000213d0000000100200190000024a60000c13d000000400010043f000000200030008c000024610000413d00000000010b043300000d8c00100198000024610000c13d0000000502500270000000000201001f00000000020004150000000002280049000000000200000200000d8d0110019700000da20010009c000024a20000c13d000000000001042d000000000100001900002ec70001043000000d8a01000041000000000010043f00000d440100004100002ec700010430000000000001042f00000d9501000041000000000010043f00000d440100004100002ec70001043000000d9a01000041000000000010043f00000d440100004100002ec70001043000000d9601000041000000000010043f00000d440100004100002ec700010430000000000003004b000024780000c13d00000060020000390000249f0000013d0000001f0230003900000bb3022001970000003f0220003900000da304200197000000400200043d0000000004420019000000000024004b0000000005000039000000010500403900000bb90040009c000024a60000213d0000000100500190000024a60000c13d000000400040043f0000001f0430018f000000000632043600000bb405300198000500000006001d0000000003560019000024920000613d000000000601034f0000000507000029000000006806043c0000000007870436000000000037004b0000248e0000c13d000000000004004b0000249f0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b000024ac0000c13d00000da401000041000000000010043f00000d440100004100002ec70001043000000d4701000041000000000010043f0000004101000039000000040010043f00000d480100004100002ec700010430000000050200002900000bb20020009c00000bb202008041000000400220021000000bb20010009c00000bb2010080410000006001100210000000000121019f00002ec7000104300001000000000002000000000001004b000024e50000613d000100000001001d000000000010043f0000000401000039000000200010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000d38011001c700008010020000392ec52ec00000040f0000000100200190000024e30000613d000000000101043b000000000101041a000000000001004b000024e00000c13d000000000100041a0000000102000029000000000021004b000024e50000a13d000000010220008a000100000002001d000000000020043f0000000401000039000000200010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000d38011001c700008010020000392ec52ec00000040f0000000100200190000024e30000613d000000000101043b000000000101041a000000000001004b0000000102000029000024cd0000613d00000d4200100198000024e50000c13d000000000001042d000000000100001900002ec70001043000000d8a01000041000000000010043f00000d440100004100002ec7000104300014000000000002000000000200041a0000000003120019000200000003001d000000010330008a000f00000002001d000000010220008a000000000032004b00002af30000213d0000002302000039000000000202041a000000000023004b00002af90000213d0000000f0000006b00002af30000613d000000020010006b00002af30000413d000100000001001d00000002020000290000000f0020006b000029380000813d000000400100043d001000000001001d00000d9b0010009c00002aec0000813d0000002001000039000000000101041a0000001004000029000000c002400039000000400020043f00000000030000310000000203300367000000003503043c0000000004540436000000000024004b000025090000c13d000000400200043d00000040032000390000000f04000029000000000043043500000040030000390000000003320436000000000013043500000c1c0020009c00002aec0000213d0000006001200039000000400010043f00000bb20030009c00000bb2030080410000004001300210000000000202043300000bb20020009c00000bb2020080410000006002200210000000000112019f000000000200041400000bb20020009c00000bb202008041000000c002200210000000000112019f00000bc1011001c700008010020000392ec52ec00000040f000000010020019000002a670000613d000000000101043b000000651010011a00000010020000290000000001120436000600000001001d000e002000200092000000010500003900000005065002100000000e016000290000000003010433000000400100043d00000040021000390000000f040000290000000000420435000000200210003900000000003204350000004003000039000000000031043500000c1c0010009c00002aec0000213d001100000006001d001200000005001d0000006003100039000000400030043f00000bb20020009c00000bb2020080410000004002200210000000000101043300000bb20010009c00000bb2010080410000006001100210000000000121019f000000000200041400000bb20020009c00000bb202008041000000c002200210000000000112019f00000bc1011001c700008010020000392ec52ec00000040f000000010020019000002a670000613d00000011030000290000001002300029000000000101043b000000651010011a00000000001204350000001205000029000000050050008c0000000105500039000025310000413d0000000c01000039000000000501041a00000bb90050009c00002aec0000213d00000005015002100000003f0110003900000da501100197000000400200043d0000000001120019000700000002001d000000000021004b0000000002000039000000010200403900000bb90010009c00002aec0000213d000000010020019000002aec0000c13d00000010020000290000000002020433000b00000002001d000000400010043f000000070100002900000000005104350000000c01000039000000000010043f000000000005004b000025c60000613d00000c010600004100000000070000190000000708000029000900000005001d000000000106041a000000010210019000000001041002700000007f0440618f0000001f0040008c00000000030000390000000103002039000000000032004b00002a610000c13d000000400900043d0000000003490436000000000002004b000025ac0000613d000a00000003001d000e00000004001d000c00000009001d001100000008001d001200000007001d000d00000006001d000000000060043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f000000010020019000002a670000613d0000000e0a00002900000000000a004b000000090500002900000012070000290000001108000029000025b20000613d000000000201043b00000000010000190000000d060000290000000c090000290000000a0b0000290000000003b10019000000000402041a0000000000430435000000010220003900000020011000390000000000a1004b000025a40000413d000025b50000013d00000d92011001970000000000130435000000000004004b00000020010000390000000001006039000025b50000013d00000000010000190000000d060000290000000c090000290000003f0110003900000d91021001970000000001920019000000000021004b0000000002000039000000010200403900000bb90010009c00002aec0000213d000000010020019000002aec0000c13d0000002008800039000000400010043f000000000098043500000001066000390000000107700039000000000057004b0000257c0000413d0000000e04000039000000000304041a000000400200043d0000000001320436000000000040043f000000000003004b0000000004010019000025d70000613d00000c120500004100000000040100190000000006000019000000000705041a000000000474043600000001055000390000000106600039000000000036004b000025d10000413d00000000032400490000001f0330003900000d91033001970000000004230019000000000034004b00000000030000390000000103004039000800000004001d00000bb90040009c00002aec0000213d000000010030019000002aec0000c13d0000000803000029000000400030043f00000007030000290000000003030433000000000003004b00002a690000613d0000000002020433000000000023004b00002a6b0000c13d00000000040000190000000502400210000000000212001900000000020204330000000b0020006c000025f70000213d0000000104400039000000000034004b000025ed0000413d000500000000001d000025f80000013d000500000004001d0000000f01000039000000000501041a00000bb90050009c00002aec0000213d00000005015002100000003f0110003900000da5021001970000000801200029000000000021004b0000000002000039000000010200403900000bb90010009c00002aec0000213d000000010020019000002aec0000c13d00000006020000290000000002020433000b00000002001d000000400010043f000000080100002900000000005104350000000f01000039000000000010043f000000000005004b000026600000613d00000c2b0600004100000000070000190000000808000029000900000005001d000000000106041a000000010210019000000001041002700000007f0440618f0000001f0040008c00000000030000390000000103002039000000000331013f000000010030019000002a610000c13d000000400900043d0000000003490436000000000002004b000026460000613d000a00000003001d000c00000004001d000d00000009001d000e00000008001d001100000007001d001200000006001d000000000060043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f000000010020019000002a670000613d0000000c0a00002900000000000a004b000000090500002900000011070000290000000e080000290000264c0000613d000000000201043b000000000100001900000012060000290000000d090000290000000a0b0000290000000003b10019000000000402041a0000000000430435000000010220003900000020011000390000000000a1004b0000263e0000413d0000264f0000013d00000d92011001970000000000130435000000000004004b000000200100003900000000010060390000264f0000013d000000000100001900000012060000290000000d090000290000003f0110003900000d91021001970000000001920019000000000021004b0000000002000039000000010200403900000bb90010009c00002aec0000213d000000010020019000002aec0000c13d0000002008800039000000400010043f000000000098043500000001066000390000000107700039000000000057004b000026150000413d0000001104000039000000000304041a000000400200043d0000000001320436000000000040043f000000000003004b0000000004010019000026710000613d00000c3b0500004100000000040100190000000006000019000000000705041a000000000474043600000001055000390000000106600039000000000036004b0000266b0000413d00000000032400490000001f0330003900000d91033001970000000004230019000000000034004b00000000030000390000000103004039000700000004001d00000bb90040009c00002aec0000213d000000010030019000002aec0000c13d0000000703000029000000400030043f00000008030000290000000003030433000000000003004b00002a6d0000613d0000000002020433000000000023004b00002a7e0000c13d00000000040000190000000502400210000000000212001900000000020204330000000b0020006c000026910000213d0000000104400039000000000034004b000026870000413d000600000000001d000026920000013d000600000004001d0000001201000039000000000501041a00000bb90050009c00002aec0000213d00000005015002100000003f0110003900000da5021001970000000701200029000000000021004b0000000002000039000000010200403900000bb90010009c00002aec0000213d000000010020019000002aec0000c13d000000100200002900000040022000390000000002020433000b00000002001d000000400010043f000000070100002900000000005104350000001201000039000000000010043f000000000005004b000026fb0000613d00000c620600004100000000070000190000000708000029000900000005001d000000000106041a000000010210019000000001041002700000007f0440618f0000001f0040008c00000000030000390000000103002039000000000331013f000000010030019000002a610000c13d000000400900043d0000000003490436000000000002004b000026e10000613d000a00000003001d000c00000004001d000d00000009001d000e00000008001d001100000007001d001200000006001d000000000060043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f000000010020019000002a670000613d0000000c0a00002900000000000a004b000000090500002900000011070000290000000e08000029000026e70000613d000000000201043b000000000100001900000012060000290000000d090000290000000a0b0000290000000003b10019000000000402041a0000000000430435000000010220003900000020011000390000000000a1004b000026d90000413d000026ea0000013d00000d92011001970000000000130435000000000004004b00000020010000390000000001006039000026ea0000013d000000000100001900000012060000290000000d090000290000003f0110003900000d91021001970000000001920019000000000021004b0000000002000039000000010200403900000bb90010009c00002aec0000213d000000010020019000002aec0000c13d0000002008800039000000400010043f000000000098043500000001066000390000000107700039000000000057004b000026b00000413d0000001404000039000000000304041a000000400200043d0000000001320436000000000040043f000000000003004b00000000040100190000270c0000613d00000da90500004100000000040100190000000006000019000000000705041a000000000474043600000001055000390000000106600039000000000036004b000027060000413d00000000032400490000001f0330003900000d91033001970000000004230019000000000034004b00000000030000390000000103004039000800000004001d00000bb90040009c00002aec0000213d000000010030019000002aec0000c13d0000000803000029000000400030043f00000007030000290000000003030433000000000003004b00002a690000613d0000000002020433000000000023004b00002a6b0000c13d00000000040000190000000502400210000000000212001900000000020204330000000b0020006c0000272c0000213d0000000104400039000000000034004b000027220000413d000400000000001d0000272d0000013d000400000004001d0000001501000039000000000501041a00000bb90050009c00002aec0000213d00000005015002100000003f0110003900000da5021001970000000801200029000000000021004b0000000002000039000000010200403900000bb90010009c00002aec0000213d000000010020019000002aec0000c13d000000100200002900000060022000390000000002020433000b00000002001d000000400010043f000000080100002900000000005104350000001501000039000000000010043f000000000005004b000027960000613d00000c840600004100000000070000190000000808000029000900000005001d000000000106041a000000010210019000000001041002700000007f0440618f0000001f0040008c00000000030000390000000103002039000000000331013f000000010030019000002a610000c13d000000400900043d0000000003490436000000000002004b0000277c0000613d000a00000003001d000c00000004001d000d00000009001d000e00000008001d001100000007001d001200000006001d000000000060043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f000000010020019000002a670000613d0000000c0a00002900000000000a004b000000090500002900000011070000290000000e08000029000027820000613d000000000201043b000000000100001900000012060000290000000d090000290000000a0b0000290000000003b10019000000000402041a0000000000430435000000010220003900000020011000390000000000a1004b000027740000413d000027850000013d00000d92011001970000000000130435000000000004004b00000020010000390000000001006039000027850000013d000000000100001900000012060000290000000d090000290000003f0110003900000d91021001970000000001920019000000000021004b0000000002000039000000010200403900000bb90010009c00002aec0000213d000000010020019000002aec0000c13d0000002008800039000000400010043f000000000098043500000001066000390000000107700039000000000057004b0000274b0000413d0000001704000039000000000304041a000000400200043d0000000001320436000000000040043f000000000003004b0000000004010019000027a70000613d00000c920500004100000000040100190000000006000019000000000705041a000000000474043600000001055000390000000106600039000000000036004b000027a10000413d00000000032400490000001f0330003900000d91033001970000000004230019000000000034004b00000000030000390000000103004039000700000004001d00000bb90040009c00002aec0000213d000000010030019000002aec0000c13d0000000703000029000000400030043f00000008030000290000000003030433000000000003004b00002a6d0000613d0000000002020433000000000023004b00002a7e0000c13d00000000040000190000000502400210000000000212001900000000020204330000000b0020006c000027c70000213d0000000104400039000000000034004b000027bd0000413d000300000000001d000027c80000013d000300000004001d0000001801000039000000000501041a00000bb90050009c00002aec0000213d00000005015002100000003f0110003900000da5021001970000000701200029000000000021004b0000000002000039000000010200403900000bb90010009c00002aec0000213d000000010020019000002aec0000c13d000000100200002900000080022000390000000002020433000b00000002001d000000400010043f00000007010000290000000000510435000000000005004b0000282f0000613d00000ca30600004100000000070000190000000708000029000900000005001d000000000106041a000000010210019000000001041002700000007f0440618f0000001f0040008c00000000030000390000000103002039000000000331013f000000010030019000002a610000c13d000000400900043d0000000003490436000000000002004b000028150000613d000a00000003001d000c00000004001d000d00000009001d000e00000008001d001100000007001d001200000006001d000000000060043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f000000010020019000002a670000613d0000000c0a00002900000000000a004b000000090500002900000011070000290000000e080000290000281b0000613d000000000201043b000000000100001900000012060000290000000d090000290000000a0b0000290000000003b10019000000000402041a0000000000430435000000010220003900000020011000390000000000a1004b0000280d0000413d0000281e0000013d00000d92011001970000000000130435000000000004004b000000200100003900000000010060390000281e0000013d000000000100001900000012060000290000000d090000290000003f0110003900000d91021001970000000001920019000000000021004b0000000002000039000000010200403900000bb90010009c00002aec0000213d000000010020019000002aec0000c13d0000002008800039000000400010043f000000000098043500000001066000390000000107700039000000000057004b000027e40000413d0000001a04000039000000000304041a000000400200043d0000000001320436000000000040043f000000000003004b0000000004010019000028400000613d00000cb10500004100000000040100190000000006000019000000000705041a000000000474043600000001055000390000000106600039000000000036004b0000283a0000413d00000000032400490000001f0330003900000d91033001970000000004230019000000000034004b00000000030000390000000103004039000800000004001d00000bb90040009c00002aec0000213d000000010030019000002aec0000c13d0000000803000029000000400030043f00000007030000290000000003030433000000000003004b00002a690000613d0000000002020433000000000023004b00002a6b0000c13d00000000080000190000000502800210000000000212001900000000020204330000000b0020006c0000285f0000213d0000000108800039000000000038004b000028560000413d00000000080000190000001b01000039000000000501041a00000bb90050009c00002aec0000213d00000005015002100000003f0110003900000da5021001970000000801200029000000000021004b0000000002000039000000010200403900000bb90010009c00002aec0000213d000000010020019000002aec0000c13d0000001002000029000000a0022000390000000002020433000c00000002001d000000400010043f00000008010000290000000000510435000000000005004b000028c80000613d00000cda0600004100000000070000190000000809000029000a00000008001d000900000005001d000000000106041a000000010210019000000001041002700000007f0440618f0000001f0040008c00000000030000390000000103002039000000000331013f000000010030019000002a610000c13d000000400a00043d00000000034a0436000000000002004b000028ae0000613d000b00000003001d000d00000004001d000e0000000a001d001000000009001d001100000007001d001200000006001d000000000060043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000c00011001c700008010020000392ec52ec00000040f000000010020019000002a670000613d0000000d0b00002900000000000b004b0000000a08000029000000090500002900000011070000290000001009000029000028b40000613d000000000201043b000000000100001900000012060000290000000e0a0000290000000b0c0000290000000003c10019000000000402041a0000000000430435000000010220003900000020011000390000000000b1004b000028a60000413d000028b70000013d00000d92011001970000000000130435000000000004004b00000020010000390000000001006039000028b70000013d000000000100001900000012060000290000000e0a0000290000003f0110003900000d91021001970000000001a20019000000000021004b0000000002000039000000010200403900000bb90010009c00002aec0000213d000000010020019000002aec0000c13d0000002009900039000000400010043f0000000000a9043500000001066000390000000107700039000000000057004b0000287c0000413d0000001d04000039000000000304041a000000400200043d0000000001320436000000000040043f000000000003004b0000000004010019000028d90000613d00000daa0500004100000000040100190000000006000019000000000705041a000000000474043600000001055000390000000106600039000000000036004b000028d30000413d00000000032400490000001f0330003900000d91033001970000000006230019000000000036004b0000000003000039000000010300403900000bb90060009c00002aec0000213d000000010030019000002aec0000c13d000000400060043f00000008030000290000000003030433000000000003004b00002a920000613d0000000002020433000000000023004b00002aa20000c13d00000000020000190000000504200210000000000414001900000000040404330000000c0040006c000028f60000213d0000000102200039000000000032004b000028ed0000413d000000000200001900000d390060009c00002aec0000213d000000c001600039000000400010043f000000a001600039001200000001001d00000000002104350000008001600039001100000001001d000000000081043500000060026000390000000301000029001000000002001d000000000012043500000040026000390000000401000029000e00000002001d0000000000120435000000050100002900000000021604360000000601000029000d00000002001d00000000001204350000000f01000029000000000010043f0000000a01000039000000200010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000d38011001c70000801002000039000c00000006001d2ec52ec00000040f000000010020019000002a670000613d0000000c020000290000000002020433000000000101043b000000000021041b0000000d0200002900000000020204330000000103100039000000000023041b0000000e0200002900000000020204330000000203100039000000000023041b000000100200002900000000020204330000000303100039000000000023041b000000110200002900000000020204330000000403100039000000000023041b000000050110003900000012020000290000000002020433000000000021041b0000000f010000290000000101100039000f00000001001d000000020010006c000024fe0000413d00000cf0010000410000000000100443000000000100041400000bb20010009c00000bb201008041000000c00110021000000cf1011001c70000800b020000392ec52ec00000040f000000010020019000002af20000613d000000000201043b000000000002004b00002af30000613d00000cf2010000410000000000100443001200000002001d000000010120008a0000000400100443000000000100041400000bb20010009c00000bb201008041000000c00110021000000d85011001c70000800b020000392ec52ec00000040f000000010020019000002af20000613d000000000101043b0000002002000039000000000012041b00000021010000390000001202000029000000000021041b000000400100043d000e00000001001d00000c5a0010009c00002aec0000213d0000000e010000290000002002100039000b00000002001d000000400020043f0000000000010435000000010000006b00002b0a0000613d000000000100041a000f00000001001d00000d97010000410000000000100443000000000100041400000bb20010009c00000bb201008041000000c00110021000000cf1011001c70000800b020000392ec52ec00000040f000000010020019000002af20000613d000000000101043b001200000001001d0000000f01000029000000000010043f0000000401000039000000200010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000d38011001c700008010020000392ec52ec00000040f000000010020019000002a670000613d000000000200041100000bb5042001970000001202000029000000a0022002100000000103000029000000010030008c000000000300001900000d9803006041000000000223019f000000000242019f000000000101043b000000000021041b001100000004001d000000000040043f0000000501000039000000200010043f000000000100041400000bb20010009c00000bb201008041000000c00110021000000d38011001c700008010020000392ec52ec00000040f000000010020019000002a670000613d000000010400002900000dab024000d1000000000101043b000000000301041a0000000002230019000000000021041b000000110000006b00002b0e0000613d0010000f0040002d0012000f0000002d0000000001000019000029b60000013d00000011060000290000001207000029000000000100041400000bb20010009c00000bb201008041000000c00110021000000bc1011001c70000800d02000039000000040300003900000d99040000410000000005000019001200000007001d2ec52ebb0000040f0000000100200190000000010100003900002a670000613d0000000100100190000029a60000613d00000012070000290000000107700039000000100070006c0000001106000029000029a80000c13d0000001001000029000000000010041b00000da101000041000000000010044300000000010004110000000400100443000000000100041400000bb20010009c00000bb201008041000000c00110021000000d85011001c700008002020000392ec52ec00000040f000000010020019000002af20000613d000000000101043b000000000001004b0000000b0600002900002a600000613d0000000101000039000000800800003900000da2090000410000000f03000029000a00000008001d000000100030006c000000000a000039000000010a0040390000000100100190000000110200002900002a5d0000613d000000000b000415000000400c00043d0000006401c00039000000000081043500000000009c04350000000401c0003900000000002104350000004401c00039000f00000003001d00000000003104350000002401c0003900000000000104350000000e0100002900000000010104330000008403c000390000000000130435000000a407c00039000000000001004b000029f60000613d000000000300001900000000047300190000000005630019000000000505043300000000005404350000002003300039000000000013004b000029ef0000413d000000000371001900000000000304350000000004000414000000040020008c00002a030000c13d0000000005000415000000140550008a00000005055002100000000103000031000000200030008c0000002004000039000000000403401900002a3e0000013d000d0000000b001d00120000000a001d0000001f0110003900000d9101100197000000a40110003900000bb20010009c00000bb201008041000000600110021000000bb200c0009c00000bb20300004100000000030c40190000004003300210000000000131019f00000bb20040009c00000bb204008041000000c003400210000000000113019f000c0000000c001d2ec52ebb0000040f0000000c0c000029000000600310027000000bb203300197000000200030008c00000020040000390000000004034019000000200640019000000000056c001900002a250000613d000000000701034f00000000080c0019000000007907043c0000000008980436000000000058004b00002a210000c13d0000001f0740019000002a320000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f00030000000103550000000005000415000000130550008a0000000505500210000000010020019000000da209000041000000120a0000290000000d0b00002900002ab50000613d0000000b0600002900000080080000390000001f01400039000000600210018f0000000001c20019000000000021004b0000000002000039000000010200403900000bb90010009c00002aec0000213d000000010020019000002aec0000c13d000000400010043f000000200030008c00002a670000413d00000000010c043300000d8c0010019800002a670000c13d0000000f0300002900000001033000390000000502500270000000000201001f000000000200041500000000022b0049000000000200000200000d8d0110019700000da20010009c00000000010a0019000029d50000613d00000da401000041000000000010043f00000d440100004100002ec700010430000000000100041a000000100010006c00002a670000c13d000000000001042d00000d4701000041000000000010043f0000002201000039000000040010043f00000d480100004100002ec700010430000000000100001900002ec700010430000000080300002900002a6e0000013d000000080300002900002a7f0000013d0000000703000029000000440130003900000dae02000041000000000021043500000024013000390000001702000039000000000021043500000d2801000041000000000013043500000004013000390000002002000039000000000021043500000bb20030009c00000bb203008041000000400130021000000d7a011001c700002ec7000104300000000703000029000000640130003900000da6020000410000000000210435000000440130003900000da702000041000000000021043500000024013000390000002402000039000000000021043500000d2801000041000000000013043500000004013000390000002002000039000000000021043500000bb20030009c00000bb203008041000000400130021000000da8011001c700002ec700010430000000440160003900000dae02000041000000000021043500000024016000390000001702000039000000000021043500000d2801000041000000000016043500000004016000390000002002000039000000000021043500000bb20060009c00000bb206008041000000400160021000000d7a011001c700002ec700010430000000640160003900000da6020000410000000000210435000000440160003900000da702000041000000000021043500000024016000390000002402000039000000000021043500000d2801000041000000000016043500000004016000390000002002000039000000000021043500000bb20060009c00000bb206008041000000400160021000000da8011001c700002ec700010430000000000003004b00002ab90000c13d000000600200003900002ae00000013d0000001f0230003900000bb3022001970000003f0220003900000da304200197000000400200043d0000000004420019000000000024004b0000000005000039000000010500403900000bb90040009c00002aec0000213d000000010050019000002aec0000c13d000000400040043f0000001f0430018f000000000632043600000bb405300198000a00000006001d000000000356001900002ad30000613d000000000601034f0000000a07000029000000006806043c0000000007870436000000000037004b00002acf0000c13d000000000004004b00002ae00000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b0000000a0200002900002a590000613d00000bb20020009c00000bb202008041000000400220021000000bb20010009c00000bb2010080410000006001100210000000000121019f00002ec70001043000000d4701000041000000000010043f0000004101000039000000040010043f00000d480100004100002ec700010430000000000001042f00000d4701000041000000000010043f0000001101000039000000040010043f00000d480100004100002ec700010430000000400100043d000000440210003900000daf03000041000000000032043500000024021000390000000903000039000000000032043500000d2802000041000000000021043500000004021000390000002003000039000000000032043500000bb20010009c00000bb201008041000000400110021000000d7a011001c700002ec70001043000000dad01000041000000000010043f00000d440100004100002ec70001043000000dac01000041000000000010043f00000d440100004100002ec700010430000f000000000002000f00000001001d0000000012010434000e00000001001d0006000510200122000000000001004b00002df70000c13d000000000002004b00002ba50000613d00000db10020009c00002df10000213d000000060100002900000005041002100000003f0140003900000da506100197000000400300043d0000000001630019000c00000003001d000000000031004b0000000003000039000000010300403900000bb90010009c00002df10000213d000000010030019000002df10000c13d000000400010043f00000006010000290000000c030000290000000001130436000500000001001d0000001f0540018f0000000001000031000d00020010036b000000000004004b00002b3c0000613d000000050100002900000000074100190000000d0300035f000000003803043c0000000001810436000000000071004b00002b380000c13d000000000005004b000000400300043d0000000001630019000b00000003001d000000000031004b0000000003000039000000010300403900000bb90010009c00002df10000213d000000010030019000002df10000c13d000000400010043f00000006010000290000000b030000290000000001130436000400000001001d000000000004004b00002b550000613d000000040100002900000000074100190000000d0300035f000000003803043c0000000001810436000000000071004b00002b510000c13d000000000005004b000000400300043d0000000001630019000a00000003001d000000000031004b0000000003000039000000010300403900000bb90010009c00002df10000213d000000010030019000002df10000c13d000000400010043f00000006010000290000000a030000290000000001130436000300000001001d000000000004004b00002b6e0000613d000000030100002900000000074100190000000d0300035f000000003803043c0000000001810436000000000071004b00002b6a0000c13d000000000005004b000000400300043d0000000001630019000900000003001d000000000031004b0000000003000039000000010300403900000bb90010009c00002df10000213d000000010030019000002df10000c13d000000400010043f000000060100002900000009030000290000000001130436000200000001001d000000000004004b00002b870000613d000000020100002900000000074100190000000d0300035f000000003803043c0000000001810436000000000071004b00002b830000c13d000000000005004b000000400300043d0000000001630019000800000003001d000000000031004b0000000003000039000000010300403900000bb90010009c00002df10000213d000000010030019000002df10000c13d000000400010043f000000060100002900000008030000290000000001130436000100000001001d000000000004004b00002ba00000613d000000010100002900000000044100190000000d0300035f000000003603043c0000000001610436000000000041004b00002b9c0000c13d000000000005004b000000050020008c00002bb40000813d0000006001000039000000000001042d000000400200043d00000db80020009c00002df10000813d0000006001200039000000400010043f000000400120003900000db9030000410000000000310435000000200120003900000dba0300004100000000003104350000003a0100003900000000001204350000000001020019000000000001042d0000006001000039000000800a0000390000000006000019000700000001001d00000005026000c9000000000006004b00002bbe0000613d00000000016200d9000000050010008c00002de50000c13d0000000f010000290000000001010433000000000021004b00002deb0000a13d0000000c010000290000000001010433000000000061004b00002deb0000a13d0000000e01200029000000050b6002100000000508b000290000000001010433000000f8011002700000000000180435000000000006004b00002bd10000613d00000000016200d9000000050010008c00002de50000c13d00000001032000390000000f010000290000000001010433000000000031004b00002deb0000a13d0000000b010000290000000001010433000000000061004b00002deb0000a13d0000000404b000290000000e013000290000000001010433000000f8011002700000000000140435000000000006004b00002be40000613d00000000016200d9000000050010008c00002de50000c13d00000002032000390000000f010000290000000001010433000000000031004b00002deb0000a13d0000000a010000290000000001010433000000000061004b00002deb0000a13d0000000307b000290000000e013000290000000001010433000000f8011002700000000000170435000000000006004b00002bf70000613d00000000016200d9000000050010008c00002de50000c13d00000003032000390000000f010000290000000001010433000000000031004b00002deb0000a13d00000009010000290000000001010433000000000061004b00002deb0000a13d0000000205b000290000000e013000290000000001010433000000f8011002700000000000150435000000000006004b00002c0a0000613d00000000016200d9000000050010008c00002de50000c13d00000004032000390000000f010000290000000001010433000000000031004b00002deb0000a13d00000008010000290000000001010433000000000061004b00002deb0000a13d0000000102b000290000000e013000290000000001010433000000f80110027000000000001204350000000c010000290000000001010433000000000061004b00002deb0000a13d0000000008080433000000000008004b00002c530000613d000000000e080019000000000b000019000000000c0b0019000000010bb0003a00002de50000613d0000000900e0008c0000000a0ee0011a00002c210000213d00000d3600c0009c00002df10000213d00000d910ec001970000005f01e0003900000d9101100197000000400f00043d00000000031f00190000000000f3004b0000000001000039000000010100403900000bb90030009c00002df10000213d000000010010019000002df10000c13d000000400030043f0000000001bf0436000000200ee0003900000d9103e0019800002c410000613d00000000033100190000000d0d00035f000000000c01001900000000d90d043c000000000c9c043600000000003c004b00002c3d0000c13d0000001f00e0019000000000000b004b00002de50000613d000000010bb0008a00000000030f04330000000000b3004b00002deb0000a13d00000000031b0019000000090080008c0000000a9880011a000000f809900210000000000c03043300000d330cc001970000000009c9019f00000d37099001c7000000000093043500002c420000213d00002c5d0000013d000000400f00043d00000bb600f0009c00002df10000213d0000004001f00039000000400010043f0000002001f0003900000d37030000410000000000310435000000010100003900000000001f04350000000b010000290000000001010433000000000061004b00002deb0000a13d0000000008040433000000000008004b00002c980000613d000000000c080019000000000b00001900000000040b0019000000010bb0003a00002de50000613d0000000900c0008c0000000a0cc0011a00002c660000213d00000d360040009c00002df10000213d00000d910e4001970000005f01e0003900000d9101100197000000400400043d0000000003140019000000000043004b0000000001000039000000010100403900000bb90030009c00002df10000213d000000010010019000002df10000c13d000000400030043f000000000cb40436000000200ee0003900000d9101e0019800002c860000613d00000000031c00190000000d0d00035f00000000010c001900000000d90d043c0000000001910436000000000031004b00002c820000c13d0000001f00e0019000000000000b004b00002de50000613d000000010bb0008a00000000010404330000000000b1004b00002deb0000a13d0000000001cb0019000000090080008c0000000a3880011a000000f803300210000000000901043300000d3309900197000000000393019f00000d37033001c7000000000031043500002c870000213d00002ca20000013d000000400400043d00000bb60040009c00002df10000213d0000004001400039000000400010043f000000200140003900000d37030000410000000000310435000000010100003900000000001404350000000a010000290000000001010433000000000061004b00002deb0000a13d0000000008070433000000000008004b00002cdd0000613d000000000c080019000000000b00001900000000070b0019000000010bb0003a00002de50000613d0000000900c0008c0000000a0cc0011a00002cab0000213d00000d360070009c00002df10000213d00000d910e7001970000005f01e0003900000d9101100197000000400700043d0000000003170019000000000073004b0000000001000039000000010100403900000bb90030009c00002df10000213d000000010010019000002df10000c13d000000400030043f000000000cb70436000000200ee0003900000d9101e0019800002ccb0000613d00000000031c00190000000d0d00035f00000000010c001900000000d90d043c0000000001910436000000000031004b00002cc70000c13d0000001f00e0019000000000000b004b00002de50000613d000000010bb0008a00000000010704330000000000b1004b00002deb0000a13d0000000001cb0019000000090080008c0000000a3880011a000000f803300210000000000901043300000d3309900197000000000393019f00000d37033001c7000000000031043500002ccc0000213d00002ce70000013d000000400700043d00000bb60070009c00002df10000213d0000004001700039000000400010043f000000200170003900000d370300004100000000003104350000000101000039000000000017043500000009010000290000000001010433000000000061004b00002deb0000a13d0000000008050433000000000008004b00002d220000613d000000000c080019000000000b00001900000000050b0019000000010bb0003a00002de50000613d0000000900c0008c0000000a0cc0011a00002cf00000213d00000d360050009c00002df10000213d00000d910e5001970000005f01e0003900000d9101100197000000400500043d0000000003150019000000000053004b0000000001000039000000010100403900000bb90030009c00002df10000213d000000010010019000002df10000c13d000000400030043f000000000cb50436000000200ee0003900000d9101e0019800002d100000613d00000000031c00190000000d0d00035f00000000010c001900000000d90d043c0000000001910436000000000031004b00002d0c0000c13d0000001f00e0019000000000000b004b00002de50000613d000000010bb0008a00000000010504330000000000b1004b00002deb0000a13d0000000001cb0019000000090080008c0000000a3880011a000000f803300210000000000901043300000d3309900197000000000393019f00000d37033001c7000000000031043500002d110000213d00002d2c0000013d000000400500043d00000bb60050009c00002df10000213d0000004001500039000000400010043f000000200150003900000d370300004100000000003104350000000101000039000000000015043500000008010000290000000001010433000000000061004b00002deb0000a13d0000000002020433000000000002004b00002d670000613d000000000c020019000000000b00001900000000080b0019000000010bb0003a00002de50000613d0000000900c0008c0000000a0cc0011a00002d350000213d00000d360080009c00002df10000213d00000d910e8001970000005f01e0003900000d9101100197000000400800043d0000000003180019000000000083004b0000000001000039000000010100403900000bb90030009c00002df10000213d000000010010019000002df10000c13d000000400030043f000000000cb80436000000200ee0003900000d9101e0019800002d550000613d00000000031c00190000000d0d00035f00000000010c001900000000d90d043c0000000001910436000000000031004b00002d510000c13d0000001f00e0019000000000000b004b00002de50000613d000000010bb0008a00000000010804330000000000b1004b00002deb0000a13d0000000001cb0019000000090020008c0000000a3220011a000000f803300210000000000901043300000d3309900197000000000393019f00000d37033001c7000000000031043500002d560000213d00002d710000013d000000400800043d00000bb60080009c00002df10000213d0000004001800039000000400010043f000000200180003900000d3702000041000000000021043500000001010000390000000000180435000000400200043d000000200b2000390000000701000029000000000c01043300000000000c004b00002d7f0000613d00000000010000190000000003b1001900000000091a00190000000009090433000000000093043500000020011000390000000000c1004b00002d780000413d0000000001bc001900000db2030000410000000000310435000000090a10003900000000dc0f043400000000000c004b00002d8e0000613d00000000010000190000000003a1001900000000091d00190000000009090433000000000093043500000020011000390000000000c1004b00002d870000413d0000000001ac001900000db3030000410000000000310435000000050a10003900000000c4040434000000000004004b00002d9d0000613d00000000010000190000000003a1001900000000091c0019000000000909043300000000009304350000002001100039000000000041004b00002d960000413d0000000001a40019000000200310003900000db404000041000000000043043500000db5030000410000000000310435000000210410003900000000a7070434000000000007004b00002daf0000613d0000000001000019000000000341001900000000091a0019000000000909043300000000009304350000002001100039000000000071004b00002da80000413d000000000147001900000db603000041000000000031043500000001041000390000000075050434000000000005004b00002dbe0000613d000000000100001900000000034100190000000009170019000000000909043300000000009304350000002001100039000000000051004b00002db70000413d000000000145001900000db603000041000000000031043500000001041000390000000075080434000000000005004b00002dcd0000613d000000000100001900000000034100190000000008170019000000000808043300000000008304350000002001100039000000000051004b00002dc60000413d000000000145001900000db703000041000000000031043500000000012100490000001b0310008a0000000000320435000000240110003900000d91031001970000000001230019000000000031004b0000000003000039000000010300403900000bb90010009c00002df10000213d000000010030019000002df10000c13d000000400010043f0000000106600039000000060060006c000000000a0b0019000000000102001900002bb70000413d0000000001020019000000000001042d00000d4701000041000000000010043f0000001101000039000000040010043f00000d480100004100002ec70001043000000d4701000041000000000010043f0000003201000039000000040010043f00000d480100004100002ec70001043000000d4701000041000000000010043f0000004101000039000000040010043f00000d480100004100002ec700010430000000400100043d000000440210003900000db003000041000000000032043500000024021000390000001803000039000000000032043500000d2802000041000000000021043500000004021000390000002003000039000000000032043500000bb20010009c00000bb201008041000000400110021000000d7a011001c700002ec7000104300000000002010019000000400300043d0000000001010433000000000001004b00002e770000613d00000c1c0030009c00002e820000213d0000006001300039000000400010043f000000400130003900000d2e040000410000000000410435000000200130003900000d2f04000041000000000041043500000040010000390000000000130435000000000102043300000dbb0010009c00002e880000813d00000d310010009c00002e880000213d00000d320010009c00002e820000213d0000000201100039000000030110011a00000002051002100000003f0150003900000d91061001970000003f0160003900000d9104100197000000400100043d0000000004410019000000000014004b0000000007000039000000010700403900000bb90040009c00002e820000213d000000010070019000002e820000c13d000000400040043f0000002004100039000000000006004b00002e3c0000613d0000000006640019000000000700003100000002077003670000000008040019000000007907043c0000000008980436000000000068004b00002e380000c13d000000000051043500000000060204330000000005260019000000000025004b00002e6f0000a13d000000010330003900000000060200190000000306600039000000000706043300000012087002700000003f0880018f00000000088300190000000008080433000000f808800210000000000904043300000d3309900197000000000889019f00000000008404350000000c087002700000003f0880018f00000000088300190000000008080433000000f8088002100000000109400039000000000a09043300000d330aa0019700000000088a019f000000000089043500000006087002700000003f0880018f00000000088300190000000008080433000000f8088002100000000209400039000000000a09043300000d330aa0019700000000088a019f00000000008904350000003f0770018f00000000077300190000000007070433000000f8077002100000000308400039000000000908043300000d3309900197000000000779019f00000000007804350000000404400039000000000056004b00002e430000413d0000000006020433000000032060011a000000020020008c00002e7e0000613d000000010020008c00002e810000c13d00000d3502000041000000020340008a00002e800000013d00000d940030009c00002e820000813d0000002001300039000000400010043f0000000002000019000000000103001900002e800000013d00000d3402000041000000010340008a0000000000230435000000000001042d00000d4701000041000000000010043f0000004101000039000000040010043f00000d480100004100002ec70001043000000d4701000041000000000010043f0000001101000039000000040010043f00000d480100004100002ec700010430000000000001042f00000bb20010009c00000bb201008041000000400110021000000bb20020009c00000bb2020080410000006002200210000000000112019f000000000200041400000bb20020009c00000bb202008041000000c002200210000000000112019f00000bc1011001c700008010020000392ec52ec00000040f000000010020019000002ea20000613d000000000101043b000000000001042d000000000100001900002ec70001043000000000050100190000000000200443000000040030008c00002eab0000a13d00000005014002700000000001010031000000040010044300000bb20030009c00000bb2030080410000006001300210000000000200041400000bb20020009c00000bb202008041000000c002200210000000000112019f00000dbc011001c700000000020500192ec52ec00000040f000000010020019000002eba0000613d000000000101043b000000000001042d000000000001042f00002ebe002104210000000102000039000000000001042d0000000002000019000000000001042d00002ec3002104230000000102000039000000000001042d0000000002000019000000000001042d00002ec50000043200002ec60001042e00002ec70001043000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffbf506f636b657420446f6773000000000000000000000000000000000000000000504f4b45444f4753000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffbfa87805ed57dc1f0d489ce33be4c4577d74ccde357eeeee058a32c55c44a532405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5acebfa87805ed57dc1f0d489ce33be4c4577d74ccde357eeeee058a32c55c44a5313da8a5f161a6c3ff06a60736d0ed24d7963cc6a5c4fafd2fa1dae9bb908e07a5c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b3da8a5f161a6c3ff06a60736d0ed24d7963cc6a5c4fafd2fa1dae9bb908e07a4ffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0000000000000000000000000000000000000000000000000fffffffffffffeff000000000000000000000000000000000000000000000000fffffffffffffdffdf71260b0bdf7126040cdf7126060cdf7126090cdf71260b0cdf712600000000040bdf7126050bdf7126060bdf7126070bdf7126080bdf7126090bdf71260a0b7126060adf7126070adf7126080adf7126090adf71260a0adf71260b0adf712609df71260809df71260909df71260a09df71260b09df7126040adf7126050adf260a08df71260b088843140c088843140409df71260509df71260609df712607df71260907ffffff0a07df71260b07ffffff0308df71260808df71260908df710805df71260706df71260906df71260a06df71260b06df71260207df71260807a0bdfa0b0ba0bdfa040ca0bdfa060ca0bdfa090ca0bdfa0b0ca0bdfa00000000040ba0bdfa050ba0bdfa060ba0bdfa070ba0bdfa080ba0bdfa090ba0bdfa0a0bbdfa060aa0bdfa070aa0bdfa080aa0bdfa090aa0bdfa0a0aa0bdfa0b0aa0bdfa09a0bdfa0809a0bdfa0909a0bdfa0a09a0bdfa0b09a0bdfa040aa0bdfa050aa0fa0a08a0bdfa0b08759ff70c08759ff70409a0bdfa0509a0bdfa0609a0bdfa07a0bdfa0907ffffff0a07a0bdfa0b07ffffff0308a0bdfa0808a0bdfa0908a0bd0805a0bdfa0706a0bdfa0906a0bdfa0a06a0bdfa0b06a0bdfa0207a0bdfa0807d77bba0b0bd77bba040cd77bba060cd77bba090cd77bba0b0cd77bba00000000040bd77bba050bd77bba060bd77bba070bd77bba080bd77bba090bd77bba0a0b7bba060ad77bba070ad77bba080ad77bba090ad77bba0a0ad77bba0b0ad77bba09d77bba0809d77bba0909d77bba0a09d77bba0b09d77bba040ad77bba050ad7ba0a08d77bba0b08c7479f0c08c7479f0409d77bba0509d77bba0609d77bba07d77bba0907ffffff0a07d77bba0b07ffffff0308d77bba0808d77bba0908d77b0805d77bba0706d77bba0906d77bba0a06d77bba0b06d77bba0207d77bba08075fcde40b0b5fcde4040c5fcde4060c5fcde4090c5fcde40b0c5fcde400000000040b5fcde4050b5fcde4060b5fcde4070b5fcde4080b5fcde4090b5fcde40a0bcde4060a5fcde4070a5fcde4080a5fcde4090a5fcde40a0a5fcde40b0a5fcde4095fcde408095fcde409095fcde40a095fcde40b095fcde4040a5fcde4050a5fe40a085fcde40b081c8ea60c081c8ea604095fcde405095fcde406095fcde4075fcde40907ffffff0a075fcde40b07ffffff03085fcde408085fcde409085fcd08055fcde407065fcde409065fcde40a065fcde40b065fcde402075fcde40807eec39a0b0beec39a040ceec39a060ceec39a090ceec39a0b0ceec39a00000000040beec39a050beec39a060beec39a070beec39a080beec39a090beec39a0a0bc39a060aeec39a070aeec39a080aeec39a090aeec39a0a0aeec39a0b0aeec39a09eec39a0809eec39a0909eec39a0a09eec39a0b09eec39a040aeec39a050aee9a0a08eec39a0b08d9a0660c08d9a0660409eec39a0509eec39a0609eec39a07eec39a0907ffffff0a07eec39a0b07ffffff0308eec39a0808eec39a0908eec30805eec39a0706eec39a0906eec39a0a06eec39a0b06eec39a0207eec39a0807222034060c222034090c2220340b0c2220340000000000000000000000000000060b222034070b222034080b222034090b2220340a0b2220340b0b222034040c2034080a222034090a2220340a0a2220340b0a222034040b222034050b222034092220340a092220340b09222034040a222034050a222034060a222034070a22210c0818162104092220340509222034060922203407092220340809222034092220340a072220340308222034080822203409082220340a082220340b0818160805222034070622203409062220340a062220340b06222034020722203408073f3f740b0b3f3f74040c3f3f74060c3f3f74090c3f3f740b0c3f3f7400000000040b3f3f74050b3f3f74060b3f3f74070b3f3f74080b3f3f74090b3f3f740a0b3f74060a3f3f74070a3f3f74080a3f3f74090a3f3f740a0a3f3f740b0a3f3f74093f3f7408093f3f7409093f3f740a093f3f740b093f3f74040a3f3f74050a3f740a083f3f740b08282f670c08282f6704093f3f7405093f3f7406093f3f74073f3f740907ffffff0a073f3f740b07ffffff03083f3f7408083f3f7409083f3f08053f3f7407063f3f7409063f3f740a063f3f740b063f3f7402073f3f740807fbf2360b0bfbf236040cfbf236060cfbf236090cfbf2360b0cfbf23600000000040bfbf236050bfbf236060bfbf236070bfbf236080bfbf236090bfbf2360a0bf236060afbf236070afbf236080afbf236090afbf2360a0afbf2360b0afbf23609fbf2360809fbf2360909fbf2360a09fbf2360b09fbf236040afbf236050afb360a08fbf2360b08b3ab040c08b3ab040409fbf2360509fbf2360609fbf23607fbf2360907ffffff0a07fbf2360b07ffffff0308fbf2360808fbf2360908fbf20805fbf2360706fbf2360906fbf2360a06fbf2360b06fbf2360207fbf2360807209699368efae3c2ab13a6e9d9f9aceb6c5aebfb5ffd7bd0a9ff6281a30b5739df6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8d0df6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8cf0200000000000000000000000000000000000020000000000000000000000000df6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c7000000000000000000000000000000000000000000000000fffffffffffffebf417574756d6e0000000000000000000000000000000000000000000000000000426c756500000000000000000000000000000000000000000000000000000000427562626c6567756d0000000000000000000000000000000000000000000000436f74746f6e63616e6479000000000000000000000000000000000000000000437265616d0000000000000000000000000000000000000000000000000000004461726b000000000000000000000000000000000000000000000000000000004e6967687400000000000000000000000000000000000000000000000000000059656c6c6f770000000000000000000000000000000000000000000000000000284966fefa8e6efe2541488ebb0d5cc7a37fcc532c506816bdc596a17e52e14bd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1ebed7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1ebdd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb54484b5bab23cb6c6dcb7d0f87ddcd612e617dbb100a7d33dfb07aab3c9df3c03bb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c406bb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c405bb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3fdbb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3febb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3ffbb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c400bb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c401bb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c402bb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c403bb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c40409070000000b07000000000000000000000000000000000000000000000000000907ff00000a07ff00000b07ff00000c07ff00000d07ff00000e07ff00000000000000000000000000000000000000000000000000000000ffffffffffffff9f0000000908ffffff0a08ffffff000000000000000000000000000000000000000906ffffff0a06ffffff0b06ffffff0807ffffff09070000000a07ffffff0b07ffffff09080000000a080000000000000000000000000000000000000000000009060000000a060000000b0600000008070000000907ffffff0a070000000b0768ff0009080000000a080000000000000000000000000000000000000000000009060000000a060000000b060000000807000000090768ff000a0768ff000b07fbf2360908fbf2360000000000000000000000000000000000000000000000000906fbf2360b06fbf2360807fbf2360907ffffff0a07fbf2360b07ffffff0c0700000009089badb70a089badb70000000000000000000000000000000000000009069badb70a069badb70b069badb708079badb709070000000a070000000b070907ffffff0b07ffffff0000000000000000000000000000000000000000000072eef71ef43483d822203fd126296c5f8bfc62fd930b15bdbf4bf082a7e537fe8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac80b8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac80a8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac802426c61636b0000000000000000000000000000000000000000000000000000004c415a45454552525252000000000000000000000000000000000000000000004d61736b205768697465000000000000000000000000000000000000000000004d61736b20426c61636b000000000000000000000000000000000000000000004e5620476f6f676c657300000000000000000000000000000000000000000000537061726b6c696e67000000000000000000000000000000000000000000000056520000000000000000000000000000000000000000000000000000000000005768697465000000000000000000000000000000000000000000000000000000e497b8238be5e4f32f72d877ba0627e627848cb8a6504aa01d21a347d565198e1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae67b1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae67a1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae672ce133de58ba1c6975fb16a8f1bbda43e7057fe6397fd7e694ab92e9963dff39831ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c7131ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c7031ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c6831ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c6931ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c6a31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c6b31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c6c31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c6d31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c6e31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c6f000000000000000000000000000000000000000000000000fffffffffffffe3f000000000000000000000000000000000000000000000000fffffffffffffddf0037ff00000000000000000000000000000000000000000000000000000000000a03fff3000904fff3000a04ff00000b04fff30009050037ff0a050037ff0b05196cff0b06196cff0c06196cff000000000000000000000000000000000000000805196cff0905196cff0a05196cff0b05196cff0806196cff0906196cff0a06ffffff0a05ffffff0b05ffffff000000000000000000000000000000000000000903c9c9c90a03c9c9c90b03c9c9c90904ffffff0a04ffffff0b04ffffff0905ffccef0c05ff5a5a0000000000000000000000000000000000000000000000000904ffe1f60a04ffe1f60b04ffe1f60805ff5a5a0905ffccef0a05ffccef0b05f5ec230c05f5ec230000000000000000000000000000000000000000000000000804f5ec230a04f5ec230c04f5ec230805f5ec230905f5ec230a05f5ec230b050804ac32320c04ac32320905ac32320b05ac3232000000000000000000000000d9a0660a05d9a0660b05d9a0660c05d9a06600000000000000000000000000000704d9a0660904df71260a04df71260b04df71260d04d9a0660805d9a06609058f563b0c058f563b0000000000000000000000000000000000000000000000000904aa70540a04aa70540b04aa705408058f563b09058f563b0a058f563b0b05fbf2360b04fbf2360000000000000000000000000000000000000000000000000902fbf2360a02fbf2360b02fbf2360803fbf2360c03fbf2360904fbf2360a04fff74e0a05fff74e0b05fff74e000000000000000000000000000000000000000a03fff74e0b03fff74e0904fff74e0a04fff74e0b04fff74e0805fff74e0905ff00000a05ff00000b05ff0000000000000000000000000000000000000000000a03ff00000b03ff00000904ff00000a04ff00000b04ff00000805ff00000905000000000000000000000000000000000000000000000000ffffffffffffffdfffffff0905ffffff0a05ffffff0b05ffffff0c05ffffff0000000000000000000903ffffff0a03ffffff0b03ffffff0904c9c9c90a04c9c9c90b04c9c9c9080500000009060000000a060000000b060000000c0600000000000000000000000009040000000a040000000b040000000905f219190a05f219190b05f219190806447595b99645daf2d93285ba613562dea07cf81cc5141afc8643a5c9e813cbbcbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec3453bb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec3452bb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec34444265616e69652043617000000000000000000000000000000000000000000000426c7565204361700000000000000000000000000000000000000000000000004368656620686174000000000000000000000000000000000000000000000000436f74746f6e206861740000000000000000000000000000000000000000000043726f776e000000000000000000000000000000000000000000000000000000446576696c20686f726e730000000000000000000000000000000000000000004661726d657220686174000000000000000000000000000000000000000000004665646f7261000000000000000000000000000000000000000000000000000048616c6f000000000000000000000000000000000000000000000000000000004d6f6861776b20476f6c64656e000000000000000000000000000000000000004d6f6861776b20526564000000000000000000000000000000000000000000004e6f6e6500000000000000000000000000000000000000000000000000000000546f702068617420776869746500000000000000000000000000000000000000546f702068617420626c61636b000000000000000000000000000000000000009921700258681c2163fa1703a84c40f13d756cf2bf4f2d7a26c3f9afe3095f7066de8ffda797e3de9c05e8fc57b3bf0ec28a930d40b0d285d93c06501cf6a09f66de8ffda797e3de9c05e8fc57b3bf0ec28a930d40b0d285d93c06501cf6a09e66de8ffda797e3de9c05e8fc57b3bf0ec28a930d40b0d285d93c06501cf6a090319284ad7d4265c99e51f9e0112e2425b1ad54f8c4e06d7a4191eaa263c72b14ce6d7b5282bd9a3661ae061feed1dbda4e52ab073b1f9285be6e155d9c38d4fbce6d7b5282bd9a3661ae061feed1dbda4e52ab073b1f9285be6e155d9c38d4fa000000000000000000000000000000000000000000000000ffffffffffffff1f000000000000000000000000000000000000000000000000fffffffffffffedf0a09f4f4f40b09f4f4f40c09f4f4f40d09f4f4f40000000000000000000000000e06ffffff0e07ffffff0b09f4f4f40c09f4f4f40d09f4f4f40e09ff000000000e08fffcb30a09fbf2360b09fbf2360c09fbf2360e0afffcb30d0cfffcb300004b692f0c0a524b240000000000000000000000000000000000000000000000000a094b692f0b09524b240c094b692f0d094b692f0e09ffffff0a0a524b240b0a0a09ffffff0b09ffffff0c09ffffff0d09ffffff0a0affffff0d0affffff00000e05ffffff0e07ffffff0b09c3dfff0c09c3dfff0d09c3dfff0e09003dff0000aa0bb70215673b2d614cbf8a810f59932fc2446ac76f75957e269fd948e13b8b55f448fdea98c4d29eb340757ef0a66cd03dbb9538908a6a81d96026b71ec47d55f448fdea98c4d29eb340757ef0a66cd03dbb9538908a6a81d96026b71ec47c55f448fdea98c4d29eb340757ef0a66cd03dbb9538908a6a81d96026b71ec475426f6e65000000000000000000000000000000000000000000000000000000004369670000000000000000000000000000000000000000000000000000000000476f6c64206261720000000000000000000000000000000000000000000000004772656e616465000000000000000000000000000000000000000000000000005361626572746f6f746800000000000000000000000000000000000000000000566170650000000000000000000000000000000000000000000000000000000027cceb82823caa45ba60387709961a73050623da2232f8fd178296384aedbd77d833147d7dc355ba459fc788f669e58cfaf9dc25ddcd0702e87d69c7b5124291d833147d7dc355ba459fc788f669e58cfaf9dc25ddcd0702e87d69c7b5124290d833147d7dc355ba459fc788f669e58cfaf9dc25ddcd0702e87d69c7b512428939db49933fec7470543df6db808d28a71e30ccbc8a92abc45240dbded41273ebc624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c1dc624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c1cc624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c15c624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c16c624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c17c624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c18c624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c19c624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c1ac624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c1b090affffff000000000000000000000000000000000000000000000000000000090affffff070bf4f4f400000000000000000000000000000000000000000000050973eff7060973eff7070b73eff7080b73eff7000000000000000000000000c7b6b60b0ac7b6b6000000000000000000000000000000000000000000000000040ac7b6b6050ac7b6b6060ac7b6b6070ac7b6b6080ac7b6b6090ac7b6b60a0a05094447460809444746060a444746090a444746070b4447460a0b4447460000080afb3838090afb3838070bfb383800000000000000000000000000000000004ec2d2892e0b48417cb77d1bef4c1c5750509607c9ff51db24cabc6e2dc872d2b13d2d76d1f4b7be834882e410b3e3a8afaf69f83600ae24db354391d2378d36b13d2d76d1f4b7be834882e410b3e3a8afaf69f83600ae24db354391d2378d35b13d2d76d1f4b7be834882e410b3e3a8afaf69f83600ae24db354391d2378d2e444f542031000000000000000000000000000000000000000000000000000000444f542032000000000000000000000000000000000000000000000000000000486967686c6967687400000000000000000000000000000000000000000000004c696e6500000000000000000000000000000000000000000000000000000000537472697065730000000000000000000000000000000000000000000000000053636172000000000000000000000000000000000000000000000000000000006bb667d8c1b884b6aebb04786b36ebe680c334b941d6ff0b96702f108bc3696b944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c969d944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c969c944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c9695fa83c7b582e3ab0c5e4d1a1984d9e847ddb0202e158dcb115a8c590099a009c2057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff646057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff645057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff63e057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff63f057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff640057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff641057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff642057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff643057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff644000000000000000000000000000000000000000000000000fffffffffffffe5fc3070efff8c3080efff8c3090efff8c300000000000000000000000000000000272820080d272820090d2728200a0d2728200b0d2728200c0d272820060efff8020b272820020c272820030d272820040d272820050d272820060d272820070d000000000000000000000000000000000000000000000000ffffffffffffff7fae81ff080dae81ff090dae81ff0a0dae81ff0b0dae81ff0c0dae81ff060efff8020bae81ff020cae81ff030dae81ff040dae81ff050dae81ff060dae81ff070d66d9ef080d66d9ef090d66d9ef0a0d66d9ef0b0d66d9ef0c0d66d9ef060efff8020b66d9ef020c66d9ef030d66d9ef040d66d9ef050d66d9ef060d66d9ef070de6db74080de6db74090de6db740a0de6db740b0de6db740c0de6db74060efff8020be6db74020ce6db74030de6db74040de6db74050de6db74060de6db74070d1a060e16171a090e16171a0a0e16171a00000000000000000000000000000000823e2c080d823e2c090d823e2c0a0d823e2c0b0d823e2c0c0d823e2c050e1617020c823e2c0d0c823e2c030d823e2c040d823e2c050d823e2c060d823e2c070d100820080d100820090d1008200a0d1008200b0d1008200c0d100820050e1617020c1008200d0c100820030d100820040d100820050d100820060d100820070d10d275080d10d275090d10d2750a0d10d2750b0d10d2750c0d10d275050e1617020c10d2750d0c10d275030d10d275040d10d275050d10d275060d10d275070d7f0622080d7f0622090d7f06220a0d7f06220b0d7f06220c0d7f0622050e1617020c7f06220d0c7f0622030d7f0622040d7f0622050d7f0622060d7f0622070dfafdff080dfafdff090dfafdff0a0dfafdff0b0dfafdff0c0dfafdff050e1617020cfafdff0d0cfafdff030dfafdff040dfafdff050dfafdff060dfafdff070d1d040e14121d000000000000000000000000000000000000000000000000000014121d080d14121d090d14121d0a0d14121d0b0d14121d0c0d14121d030e1412020c14121d020d14121d030d14121d040d14121d050d14121d060d14121d070dc9040efdc9c90000000000000000000000000000000000000000000000000000fdc9c9080dfdc9c9090dfdc9c90a0dfdc9c90b0dfdc9c90c0dfdc9c9030efdc9020cfdc9c9020dfdc9c9030dfdc9c9040dfdc9c9050dfdc9c9060dfdc9c9070dea040eeee6ea0000000000000000000000000000000000000000000000000000eee6ea080deee6ea090deee6ea0a0deee6ea0b0deee6ea0c0deee6ea030eeee6020ceee6ea020deee6ea030deee6ea040deee6ea050deee6ea060deee6ea070dc52755b078abbcdc562e1a226fd0bf3ca9ad8586aa978eec24a0657a52a8623f3ad8aa4f87544323a9d1e5dd902f40c356527a7955687113db5f9a85ad579dcf3ad8aa4f87544323a9d1e5dd902f40c356527a7955687113db5f9a85ad579dce3ad8aa4f87544323a9d1e5dd902f40c356527a7955687113db5f9a85ad579dc1000000000000000000000000000000000000000000000000fffffffffffffe1f486f766572626f61726420314269740000000000000000000000000000000000486f766572626f61726420496e6b656400000000000000000000000000000000486f766572626f61726420536b79000000000000000000000000000000000000486f766572626f6172642074616e000000000000000000000000000000000000536b617465626f6172642042726f776e00000000000000000000000000000000536b617465626f617264204461726b20426c7565000000000000000000000000536b617465626f61726420477265656e00000000000000000000000000000000536b617465626f617264204d61726f6f6e000000000000000000000000000000536b617465626f6172642057686974650000000000000000000000000000000053757266626f617264204461726b00000000000000000000000000000000000053757266626f617264204661646564000000000000000000000000000000000053757266626f61726420536d6f6b650000000000000000000000000000000000f1ba9d5efc7e213de4dfa128d9c8194e4adc422f1b2b2af50a32dc22baff5def0e4562a10381dec21b205ed72637e6b1b523bdd0e4d4d50af5cd23dd4500a21f0e4562a10381dec21b205ed72637e6b1b523bdd0e4d4d50af5cd23dd4500a21e0e4562a10381dec21b205ed72637e6b1b523bdd0e4d4d50af5cd23dd4500a21192bbf81841de07f719af6556056ebcc96a86228289f01df5d3f697f03eb9ecb16d4407e7be21f808e6509aa9fa9143369579dd7d760fe20a2c09680fc146135d6d4407e7be21f808e6509aa9fa9143369579dd7d760fe20a2c09680fc146135c000000000000000000000000000000000000000000000000000aa87bee53800042cbb15ccdc3cad6266b0e7a08c0454b23bf29dc2df74b6f3c209e9336465bd1020000020000000000000000000000000000000400000000000000000000000080b41246c05cbb406f874e82aa2faf7db11bba9792fe09929e56ef1eee2c2da30000000200000000000000000000000000000040000001000000000000000000000000000000000000000000000000000000000000000000000000007d55094c00000000000000000000000000000000000000000000000000000000c87b56dc00000000000000000000000000000000000000000000000000000000e05c57be00000000000000000000000000000000000000000000000000000000ed288f9800000000000000000000000000000000000000000000000000000000ed288f9900000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000fa0fca8400000000000000000000000000000000000000000000000000000000e05c57bf00000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000d5abeb0000000000000000000000000000000000000000000000000000000000d5abeb0100000000000000000000000000000000000000000000000000000000d5f3948800000000000000000000000000000000000000000000000000000000c87b56dd00000000000000000000000000000000000000000000000000000000d123973000000000000000000000000000000000000000000000000000000000a22cb46400000000000000000000000000000000000000000000000000000000b228d92400000000000000000000000000000000000000000000000000000000b228d92500000000000000000000000000000000000000000000000000000000b2a2e07d00000000000000000000000000000000000000000000000000000000b88d4fde00000000000000000000000000000000000000000000000000000000a22cb46500000000000000000000000000000000000000000000000000000000b1ca83900000000000000000000000000000000000000000000000000000000095d89b400000000000000000000000000000000000000000000000000000000095d89b4100000000000000000000000000000000000000000000000000000000a0712d68000000000000000000000000000000000000000000000000000000007d55094d000000000000000000000000000000000000000000000000000000008da5cb5b000000000000000000000000000000000000000000000000000000003ccfd60a000000000000000000000000000000000000000000000000000000006352211d0000000000000000000000000000000000000000000000000000000070a082300000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000715018a600000000000000000000000000000000000000000000000000000000740d73f3000000000000000000000000000000000000000000000000000000006352211e000000000000000000000000000000000000000000000000000000006817c76c0000000000000000000000000000000000000000000000000000000042842e0d0000000000000000000000000000000000000000000000000000000042842e0e00000000000000000000000000000000000000000000000000000000481231a5000000000000000000000000000000000000000000000000000000003ccfd60b000000000000000000000000000000000000000000000000000000003e53eb2800000000000000000000000000000000000000000000000000000000095ea7b20000000000000000000000000000000000000000000000000000000023b872dc0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000367b2a2000000000000000000000000000000000000000000000000000000000375a069a00000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000006fdde020000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000081812fc0000000000000000000000000000000000000000000000000000000001ffc9a700000000000000000000000000000000000000000000000000000000055d822c000000000000000000000000000000000000002000000080000000000000000008c379a0000000000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084000000800000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000c00000008000000000000000006768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f4142434445464748494a4b4c4d4e4f505152535455565758595a616263646566bffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffdbfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe5000000000000000000000000000000000000000000000000bfffffffffffffe500ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff3d000000000000000000000000000000000000000000000000000000000000003d3d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fffffffffffffffe30000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff3f7b2274726169745f74797065223a22467572222c202276616c7565223a220000227d2c00000000000000000000000000000000000000000000000000000000007b2274726169745f74797065223a2245796573222c202276616c7565223a22007b2274726169745f74797065223a2248656164222c202276616c7565223a22007b2274726169745f74797065223a224d6f757468222c202276616c7565223a227b2274726169745f74797065223a224d61726b222c202276616c7565223a22007b2274726169745f74797065223a22426f617264222c202276616c7565223a22227d0000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000d5c4531f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff80000000000000000000000000000000000000000000000000000000000000004e487b710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000007d000000000000000000000000000000000000000000000000000000000000003c68746d6c3e3c686561643e3c7374796c653e00000000000000000000000000206865696768743d223136222066696c6c3d2223303143413641222f3e0000006573223e00000000000000000000000000000000000000000000000000000000766572666c6f773a68696464656e3b7d000000000000000000000000000000003c2f7374796c653e3c2f686561643e3c626f64793e000000000000000000000030302f737667222069643d22646f67436f6e7461696e6572222076696577426f783d22302030203136203136222077696474683d2236323922206865696768743d22363239222073686170652d72656e646572696e673d22637269737045646723646f673a686f7665727b7472616e73666f726d3a7363616c6528312e31293b74683a313030253b6865696768743a313030253b6d61782d77696474683a3632393b6d61782d6865696768743a3632393b646973706c61793a626c6f636b3b6f23646f67436f6e7461696e65727b637572736f723a706f696e7465723b7769643c672069643d22646f67223e00000000000000000000000000000000000000003c726563742069643d226261636b67726f756e64222077696474683d2231362223646f677b7472616e736974696f6e3a7472616e73666f726d20302e35733b7d3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f32303c2f673e000000000000000000000000000000000000000000000000000000003c2f7376673e0000000000000000000000000000000000000000000000000000633d2200000000000000000000000000000000000000000000000000000000003c617564696f2069643d226261726b536f756e64223e3c736f757263652073726e742e3c2f617564696f3e0000000000000000000000000000000000000000006e6422292e706c617928293b00000000000000000000000000000000000000002c66756e6374696f6e28297b000000000000000000000000000000000000000074796c652e7472616e73666f726d203d20227363616c6528312e3129223b000020227363616c65283129223b7d2c20353030293b0000000000000000000000003c7363726970743e0000000000000000000000000000000000000000000000007d293b0000000000000000000000000000000000000000000000000000000000646f6573206e6f7420737570706f72742074686520617564696f20656c656d6561696e657222292e6164644576656e744c697374656e65722822636c69636b22656e74427949642822646f6722292e7374796c652e7472616e73666f726d203d646f63756d656e742e676574456c656d656e74427949642822646f6722292e7373657454696d656f75742828293d3e7b646f63756d656e742e676574456c656d646f63756d656e742e676574456c656d656e744279496428226261726b536f75646f63756d656e742e676574456c656d656e74427949642822646f67436f6e743c2f7363726970743e3c2f626f64793e3c2f68746d6c3e0000000000000000002220747970653d22617564696f2f6f6767223e596f75722062726f77736572207b226e616d65223a2022506f636b657420446f67732023000000000000000000636b657420446f6773206f6e20416273747261637420436861696e222c000000222c000000000000000000000000000000000000000000000000000000000000226465736372697074696f6e223a202246756c6c79204f6e636861696e20506f2261747472696275746573223a205b00000000000000000000000000000000005d2c00000000000000000000000000000000000000000000000000000000000022696d616765223a2022646174613a696d6167652f7376672b786d6c3b6261736536342c0000000000000000000000000000000000000000000000000000000022616e696d6174696f6e5f75726c223a2022646174613a746578742f68746d6c3b6261736536342c000000000000000000000000000000000000000000000000646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000546f6b656e20646f6573206e6f74206578697374000000000000000000000000000000000000000000000000000000000000006400000000000000000000000017307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31506c656173652073656e64207468652065786163742045544820616d6f756e74000000000000000000000000000000000000006400000080000000000000000045786365656473206d6178206d696e74207065722077616c6c6574000000000045786365656473206d6178206d696e7420706572207472616e73616374696f6e4d696e74206e6f74207265616479207965740000000000000000000000000000436f6e74726f6c6c6572204f6e6c7900000000000000000000000000000000008f4eb604000000000000000000000000000000000000000000000000000000004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65729cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f3902000002000000000000000000000000000000240000000000000000000000005472616e73666572206661696c65642e000000000000000000000000000000005265656e7472616e637947756172643a207265656e7472616e742063616c6c00cfb3b942000000000000000000000000000000000000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925df2d9b4200000000000000000000000000000000000000000000000000000000cf4700e40000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000000000000000000000005b5e139f0000000000000000000000000000000000000000000000000000000080ac58cd00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffe0a11481000000000000000000000000000000000000000000000000000000000059c896be00000000000000000000000000000000000000000000000000000000796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d955391320000000200000000000000000000000000000000000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efea553b3400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff4035313222206865696768743d22353132223e00000000000000000000000000006c3d2223303143413641222f3e0000000000000000000000000000000000000030302f737667222076696577426f783d22302030203136203136222073686170652d72656e646572696e673d2263726973704564676573222077696474683d223c726563742077696474683d22313622206865696768743d223136222066696c1806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b83150b7a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003ffffffe0d1a57ed6000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe06174636800000000000000000000000000000000000000000000000000000000456c656d656e747320616e642077656967687473206c656e677468206d69736d0000000000000000000000000000000000000084000000000000000000000000ce6d7b5282bd9a3661ae061feed1dbda4e52ab073b1f9285be6e155d9c38d4ec6d4407e7be21f808e6509aa9fa9143369579dd7d760fe20a2c09680fc146134f00000000000000000000000000000000000000000000000100000000000000012e07630000000000000000000000000000000000000000000000000000000000b562e8dd00000000000000000000000000000000000000000000000000000000456c656d656e747320617272617920697320656d707479000000000000000000536f6c64204f7574210000000000000000000000000000000000000000000000496e76616c6964206e756d626572206f66207265616374730000000000000000000000000000000000000000000000000000000000000004ffffffffffffffff3c7265637420783d2200000000000000000000000000000000000000000000002220793d220000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000222077696474683d223122206865696768743d2231222066696c6c3d227267622c000000000000000000000000000000000000000000000000000000000000002922202f3e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffa068743d2230222066696c6c3d2272676228302c302c3029222f3e0000000000003c7265637420783d22302220793d2230222077696474683d2230222068656967bffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0200000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064446aaa028888283ee7d73f99184ee5c6685eae0cbce329a2fa2c6673490546
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000006f757468b2030d957fbecaaebf66a3fc50694ea3
-----Decoded View---------------
Arg [0] : _dogBarkAddress (address): 0x6F757468B2030d957fbECaAEBf66A3fc50694eA3
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000006f757468b2030d957fbecaaebf66a3fc50694ea3
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.