ETH Price: $2,428.07 (+5.33%)

Love Bears (LoveBears)
 

Overview

TokenID

349

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
LoveBears

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 7 of 15: lovebears.sol
// SPDX-License-Identifier: MIT

/*


*/

pragma solidity ^0.8.7;
import "./Ownable.sol";
import "./Strings.sol";
import "./ERC721A.sol";
import "./Markle.sol";


contract LoveBears is ERC721A, Ownable{
    using Strings for uint256;
   
    uint public PublicPrice = 0.05 ether;
    uint public WhitelistPrice = 0.035 ether;
     uint public RafflePrice = 0.04 ether;
    uint constant maxSupply = 10000;
    bool public Raffle_Status = false;
    bool public Whitelist_Status = false;
    bool public Public_Status = false;
    bool public isBurnEnabled=false;
    bytes32 public WhitelistMerkle;
    bytes32 public RaffleMerkle;

    string public baseURI;
    
    mapping(uint256 => address) public burnedby;

    uint public MaxPerMint = 10;  //Max Limit Per TX

             
    constructor() ERC721A("Love Bears", "LoveBears"){}


    function Public_mint(uint _count) public payable{
        require(Public_Status == true, "Sale is Paused");
        require(_count > 0, "Mint at least one token");
        require(totalSupply() + _count <= maxSupply, "Sold Out!");
        require(msg.value >= PublicPrice * _count, "Incorrect ether amount");
        require(_count <= MaxPerMint, "SELECTED NUMBER OF NFTS NOT ALLOWED IN ONE TRANSACTION");
            _safeMint(msg.sender, _count);
   }

    function Whitelist_mint(uint _count, bytes32[] calldata merkleProof) external payable{ 
        
        require(Whitelist_Status == true, "MINT HAS NOT STARTED YET");
        require(MerkleProof.verify(merkleProof,WhitelistMerkle,keccak256(abi.encodePacked(msg.sender))),"YOUR WALLET IS NOT WHITELISTED");
        require(_count <= MaxPerMint, "SELECTED NUMBER OF NFTS NOT ALLOWED IN ONE TRANSACTION");
        require(totalSupply() + _count <= maxSupply, "Sold Out!");
        require(msg.value >= WhitelistPrice * _count, "Incorrect ether amount");
        _safeMint(msg.sender, _count);
    }

    function Raffle_mint(uint _count, bytes32[] calldata merkleProof) external payable{ 
        require(Raffle_Status == true, "MINT HAS NOT STARTED YET");
        require(MerkleProof.verify(merkleProof,RaffleMerkle,keccak256(abi.encodePacked(msg.sender))),"YOUR WALLET IS NOT LISTED");
        require(msg.value >= RafflePrice * _count, "Incorrect ether amount");
        require(_count <= MaxPerMint, "SELECTED NUMBER OF NFTS NOT ALLOWED IN ONE TRANSACTION");
        require(totalSupply() + _count<= maxSupply, "Sold Out!");
            _safeMint(msg.sender, _count);
            
    }
    function Whitelist_checker(address walletAddress, bytes32[] calldata merkleProof) public view returns (bool){ 
        if(MerkleProof.verify(merkleProof,WhitelistMerkle,keccak256(abi.encodePacked(walletAddress))))
        {
            return true;
        }
        else
        {return false;}
      
    }
    function Raffle_checker(address walletAddress, bytes32[] calldata merkleProof) public view returns (bool){ 
        if(MerkleProof.verify(merkleProof,RaffleMerkle,keccak256(abi.encodePacked(walletAddress))))
        {
            return true;
        }
        else
        {return false;}
      
    }
    function adminMint(uint _count) external onlyOwner{
        require(_count > 0, "Mint at least one token");
        require(totalSupply() + _count <= maxSupply, "Sold Out!");
        _safeMint(msg.sender, _count);
    }

    function Airdrops(address[] memory _wallets) public onlyOwner{
        require(totalSupply() + _wallets.length <= maxSupply, "Sold Out!");
        for(uint i = 0; i < _wallets.length; i++)
            _safeMint(_wallets[i], 1);
    }
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    //return uri for certain token
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json")) : "";
    }

    function setBaseUri(string memory _uri) external onlyOwner {
        baseURI = _uri;
    }
    function Whitelist_status(bool status) external onlyOwner {
        Whitelist_Status = status;
    }
    function Raffle_status(bool status) external onlyOwner {
        Raffle_Status = status;
    }
    function Public_status(bool status) external onlyOwner {
        Public_Status = status;
    }
     function Burn_status(bool status) external onlyOwner {
        isBurnEnabled = status;
    }

    function SetWhitelistMerkle(bytes32 merkleRoot) external onlyOwner {
		WhitelistMerkle = merkleRoot;
	}
    function SetRaffleMerkle(bytes32 merkleRoot) external onlyOwner {
		RaffleMerkle = merkleRoot;
	}
  
    function burn(uint256 tokenId) external {
        require(isBurnEnabled, "burning disabled");
        require(
            _isApprovedOrOwner(msg.sender, tokenId),
            "burn caller is not approved"
        );
        _burn(tokenId);
        burnedby[tokenId] = msg.sender;
    }
    function Public_price(uint pr) external onlyOwner {
        PublicPrice = pr;
    }
    function Whitelist_price(uint pr) external onlyOwner {
        WhitelistPrice = pr;
    }
    function Raffle_price(uint pr) external onlyOwner {
        RafflePrice = pr;
    } 
    function withdraw() external onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }
}

File 1 of 15: Context.sol
// 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;
    }
}

File 2 of 15: DefaultOperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {OperatorFilterer} from "./OperatorFilterer.sol";

abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

File 3 of 15: EnumerableSet.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/structs/EnumerableSet.sol)
// This file was procedurally generated from scripts/generate/templates/EnumerableSet.js.

// OpenZeppelin Contracts (last updated v4.8.0) (access/Ownable2Step.sol)

pragma solidity ^0.8.0;

import "./Ownable.sol";

/**
 * @dev Contract module which provides 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} and {acceptOwnership}.
 *
 * This module is used through inheritance. It will make available all functions
 * from parent (Ownable).
 */
abstract contract Ownable2Step is Ownable {
    address private _pendingOwner;

    event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Returns the address of the pending owner.
     */
    function pendingOwner() public view virtual returns (address) {
        return _pendingOwner;
    }

    /**
     * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one.
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual override onlyOwner {
        _pendingOwner = newOwner;
        emit OwnershipTransferStarted(owner(), newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual override {
        delete _pendingOwner;
        super._transferOwnership(newOwner);
    }

    /**
     * @dev The new owner accepts the ownership transfer.
     */
    function acceptOwnership() external {
        address sender = _msgSender();
        require(pendingOwner() == sender, "Ownable2Step: caller is not the new owner");
        _transferOwnership(sender);
    }
}
pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 *
 * [WARNING]
 * ====
 * Trying to delete such a structure from storage will likely result in data corruption, rendering the structure
 * unusable.
 * See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info.
 *
 * In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an
 * array of EnumerableSet.
 * ====
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastValue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastValue;
                // Update the index for the moved value
                set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex
            }

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        return set._values[index];
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
        bytes32[] memory store = _values(set._inner);
        bytes32[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(AddressSet storage set) internal view returns (address[] memory) {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(UintSet storage set) internal view returns (uint256[] memory) {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }
}

File 4 of 15: ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';
import './DefaultOperatorFilterer.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()`.
 *
 * 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, DefaultOperatorFilterer {
    // 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;

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 1;
    }

    /**
     * @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) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view virtual returns (uint256) {
        // Counter underflow is impossible as `_currentIndex` does not decrement,
        // and it is initialized to `_startTokenId()`.
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    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();
        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();

        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 Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // 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, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @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.
     * 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) public payable virtual override {
        address owner = ownerOf(tokenId);

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId].value = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @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();

        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) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not 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 _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721A.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override onlyAllowedOperator(from){
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (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();

        if (to == address(0)) revert TransferToZeroAddress();

        _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;
                    }
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override onlyAllowedOperator(from){
        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 onlyAllowedOperator(from){
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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();
            } else {
                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();

        _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:
            // - `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)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // 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`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _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();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

        _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)
            );

            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();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        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();
        }

        _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 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();
        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)
        }
    }
}

File 5 of 15: IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// 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();

    // =============================================================
    //                            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);
}

File 6 of 15: IOperatorFilterRegistry.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

File 8 of 15: Markle.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 9 of 15: Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
        }
    }
}

File 10 of 15: OperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol";

abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(operatorFilterRegistry).code.length > 0) {
            if (subscribe) {
                operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    operatorFilterRegistry.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (
                !(
                    operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)
                        && operatorFilterRegistry.isOperatorAllowed(address(this), from)
                )
            ) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }
}

File 11 of 15: OperatorFilterRegistry.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol";
import {Ownable} from "./Ownable.sol";
import {EnumerableSet} from "./EnumerableSet.sol";
import {OperatorFilterRegistryErrorsAndEvents} from "./OperatorFilterRegistryErrorsAndEvents.sol";

/**
 * @title  OperatorFilterRegistry
 * @notice Borrows heavily from the QQL BlacklistOperatorFilter contract:
 *         https://github.com/qql-art/contracts/blob/main/contracts/BlacklistOperatorFilter.sol
 * @notice This contracts allows tokens or token owners to register specific addresses or codeHashes that may be
 * *       restricted according to the isOperatorAllowed function.
 */
contract OperatorFilterRegistry is IOperatorFilterRegistry, OperatorFilterRegistryErrorsAndEvents {
    using EnumerableSet for EnumerableSet.AddressSet;
    using EnumerableSet for EnumerableSet.Bytes32Set;

    /// @dev initialized accounts have a nonzero codehash (see https://eips.ethereum.org/EIPS/eip-1052)
    /// Note that this will also be a smart contract's codehash when making calls from its constructor.
    bytes32 constant EOA_CODEHASH = keccak256("");

    mapping(address => EnumerableSet.AddressSet) private _filteredOperators;
    mapping(address => EnumerableSet.Bytes32Set) private _filteredCodeHashes;
    mapping(address => address) private _registrations;
    mapping(address => EnumerableSet.AddressSet) private _subscribers;

    /**
     * @notice restricts method caller to the address or EIP-173 "owner()"
     */
    modifier onlyAddressOrOwner(address addr) {
        if (msg.sender != addr) {
            try Ownable(addr).owner() returns (address owner) {
                if (msg.sender != owner) {
                    revert OnlyAddressOrOwner();
                }
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert NotOwnable();
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        }
        _;
    }

    /**
     * @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns
     *         true if supplied registrant address is not registered.
     */
    function isOperatorAllowed(address registrant, address operator) external view returns (bool) {
        address registration = _registrations[registrant];
        if (registration != address(0)) {
            EnumerableSet.AddressSet storage filteredOperatorsRef;
            EnumerableSet.Bytes32Set storage filteredCodeHashesRef;

            filteredOperatorsRef = _filteredOperators[registration];
            filteredCodeHashesRef = _filteredCodeHashes[registration];

            if (filteredOperatorsRef.contains(operator)) {
                revert AddressFiltered(operator);
            }
            if (operator.code.length > 0) {
                bytes32 codeHash = operator.codehash;
                if (filteredCodeHashesRef.contains(codeHash)) {
                    revert CodeHashFiltered(operator, codeHash);
                }
            }
        }
        return true;
    }

    //////////////////
    // AUTH METHODS //
    //////////////////

    /**
     * @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner.
     */
    function register(address registrant) external onlyAddressOrOwner(registrant) {
        if (_registrations[registrant] != address(0)) {
            revert AlreadyRegistered();
        }
        _registrations[registrant] = registrant;
        emit RegistrationUpdated(registrant, true);
    }

    /**
     * @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner.
     *         Note that this does not remove any filtered addresses or codeHashes.
     *         Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes.
     */
    function unregister(address registrant) external onlyAddressOrOwner(registrant) {
        address registration = _registrations[registrant];
        if (registration == address(0)) {
            revert NotRegistered(registrant);
        }
        if (registration != registrant) {
            _subscribers[registration].remove(registrant);
            emit SubscriptionUpdated(registrant, registration, false);
        }
        _registrations[registrant] = address(0);
        emit RegistrationUpdated(registrant, false);
    }

    /**
     * @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes.
     */
    function registerAndSubscribe(address registrant, address subscription) external onlyAddressOrOwner(registrant) {
        address registration = _registrations[registrant];
        if (registration != address(0)) {
            revert AlreadyRegistered();
        }
        if (registrant == subscription) {
            revert CannotSubscribeToSelf();
        }
        address subscriptionRegistration = _registrations[subscription];
        if (subscriptionRegistration == address(0)) {
            revert NotRegistered(subscription);
        }
        if (subscriptionRegistration != subscription) {
            revert CannotSubscribeToRegistrantWithSubscription(subscription);
        }

        _registrations[registrant] = subscription;
        _subscribers[subscription].add(registrant);
        emit RegistrationUpdated(registrant, true);
        emit SubscriptionUpdated(registrant, subscription, true);
    }

    /**
     * @notice Registers an address with the registry and copies the filtered operators and codeHashes from another
     *         address without subscribing.
     */
    function registerAndCopyEntries(address registrant, address registrantToCopy)
        external
        onlyAddressOrOwner(registrant)
    {
        if (registrantToCopy == registrant) {
            revert CannotCopyFromSelf();
        }
        address registration = _registrations[registrant];
        if (registration != address(0)) {
            revert AlreadyRegistered();
        }
        address registrantRegistration = _registrations[registrantToCopy];
        if (registrantRegistration == address(0)) {
            revert NotRegistered(registrantToCopy);
        }
        _registrations[registrant] = registrant;
        emit RegistrationUpdated(registrant, true);
        _copyEntries(registrant, registrantToCopy);
    }

    /**
     * @notice Update an operator address for a registered address - when filtered is true, the operator is filtered.
     */
    function updateOperator(address registrant, address operator, bool filtered)
        external
        onlyAddressOrOwner(registrant)
    {
        address registration = _registrations[registrant];
        if (registration == address(0)) {
            revert NotRegistered(registrant);
        }
        if (registration != registrant) {
            revert CannotUpdateWhileSubscribed(registration);
        }
        EnumerableSet.AddressSet storage filteredOperatorsRef = _filteredOperators[registrant];

        if (!filtered) {
            bool removed = filteredOperatorsRef.remove(operator);
            if (!removed) {
                revert AddressNotFiltered(operator);
            }
        } else {
            bool added = filteredOperatorsRef.add(operator);
            if (!added) {
                revert AddressAlreadyFiltered(operator);
            }
        }
        emit OperatorUpdated(registrant, operator, filtered);
    }

    /**
     * @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered.
     */
    function updateCodeHash(address registrant, bytes32 codeHash, bool filtered)
        external
        onlyAddressOrOwner(registrant)
    {
        if (codeHash == EOA_CODEHASH) {
            revert CannotFilterEOAs();
        }
        address registration = _registrations[registrant];
        if (registration == address(0)) {
            revert NotRegistered(registrant);
        }
        if (registration != registrant) {
            revert CannotUpdateWhileSubscribed(registration);
        }
        EnumerableSet.Bytes32Set storage filteredCodeHashesRef = _filteredCodeHashes[registrant];

        if (!filtered) {
            bool removed = filteredCodeHashesRef.remove(codeHash);
            if (!removed) {
                revert CodeHashNotFiltered(codeHash);
            }
        } else {
            bool added = filteredCodeHashesRef.add(codeHash);
            if (!added) {
                revert CodeHashAlreadyFiltered(codeHash);
            }
        }
        emit CodeHashUpdated(registrant, codeHash, filtered);
    }

    /**
     * @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates.
     */
    function updateOperators(address registrant, address[] calldata operators, bool filtered)
        external
        onlyAddressOrOwner(registrant)
    {
        address registration = _registrations[registrant];
        if (registration == address(0)) {
            revert NotRegistered(registrant);
        }
        if (registration != registrant) {
            revert CannotUpdateWhileSubscribed(registration);
        }
        EnumerableSet.AddressSet storage filteredOperatorsRef = _filteredOperators[registrant];
        uint256 operatorsLength = operators.length;
        unchecked {
            if (!filtered) {
                for (uint256 i = 0; i < operatorsLength; ++i) {
                    address operator = operators[i];
                    bool removed = filteredOperatorsRef.remove(operator);
                    if (!removed) {
                        revert AddressNotFiltered(operator);
                    }
                }
            } else {
                for (uint256 i = 0; i < operatorsLength; ++i) {
                    address operator = operators[i];
                    bool added = filteredOperatorsRef.add(operator);
                    if (!added) {
                        revert AddressAlreadyFiltered(operator);
                    }
                }
            }
        }
        emit OperatorsUpdated(registrant, operators, filtered);
    }

    /**
     * @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates.
     */
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered)
        external
        onlyAddressOrOwner(registrant)
    {
        address registration = _registrations[registrant];
        if (registration == address(0)) {
            revert NotRegistered(registrant);
        }
        if (registration != registrant) {
            revert CannotUpdateWhileSubscribed(registration);
        }
        EnumerableSet.Bytes32Set storage filteredCodeHashesRef = _filteredCodeHashes[registrant];
        uint256 codeHashesLength = codeHashes.length;
        unchecked {
            if (!filtered) {
                for (uint256 i = 0; i < codeHashesLength; ++i) {
                    bytes32 codeHash = codeHashes[i];
                    bool removed = filteredCodeHashesRef.remove(codeHash);
                    if (!removed) {
                        revert CodeHashNotFiltered(codeHash);
                    }
                }
            } else {
                for (uint256 i = 0; i < codeHashesLength; ++i) {
                    bytes32 codeHash = codeHashes[i];
                    if (codeHash == EOA_CODEHASH) {
                        revert CannotFilterEOAs();
                    }
                    bool added = filteredCodeHashesRef.add(codeHash);
                    if (!added) {
                        revert CodeHashAlreadyFiltered(codeHash);
                    }
                }
            }
        }
        emit CodeHashesUpdated(registrant, codeHashes, filtered);
    }

    /**
     * @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous
     *         subscription if present.
     *         Note that accounts with subscriptions may go on to subscribe to other accounts - in this case,
     *         subscriptions will not be forwarded. Instead the former subscription's existing entries will still be
     *         used.
     */
    function subscribe(address registrant, address newSubscription) external onlyAddressOrOwner(registrant) {
        if (registrant == newSubscription) {
            revert CannotSubscribeToSelf();
        }
        if (newSubscription == address(0)) {
            revert CannotSubscribeToZeroAddress();
        }
        address registration = _registrations[registrant];
        if (registration == address(0)) {
            revert NotRegistered(registrant);
        }
        if (registration == newSubscription) {
            revert AlreadySubscribed(newSubscription);
        }
        address newSubscriptionRegistration = _registrations[newSubscription];
        if (newSubscriptionRegistration == address(0)) {
            revert NotRegistered(newSubscription);
        }
        if (newSubscriptionRegistration != newSubscription) {
            revert CannotSubscribeToRegistrantWithSubscription(newSubscription);
        }

        if (registration != registrant) {
            _subscribers[registration].remove(registrant);
            emit SubscriptionUpdated(registrant, registration, false);
        }
        _registrations[registrant] = newSubscription;
        _subscribers[newSubscription].add(registrant);
        emit SubscriptionUpdated(registrant, newSubscription, true);
    }

    /**
     * @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes.
     */
    function unsubscribe(address registrant, bool copyExistingEntries) external onlyAddressOrOwner(registrant) {
        address registration = _registrations[registrant];
        if (registration == address(0)) {
            revert NotRegistered(registrant);
        }
        if (registration == registrant) {
            revert NotSubscribed();
        }
        _subscribers[registration].remove(registrant);
        _registrations[registrant] = registrant;
        emit SubscriptionUpdated(registrant, registration, false);
        if (copyExistingEntries) {
            _copyEntries(registrant, registration);
        }
    }

    /**
     * @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr.
     */
    function copyEntriesOf(address registrant, address registrantToCopy) external onlyAddressOrOwner(registrant) {
        if (registrant == registrantToCopy) {
            revert CannotCopyFromSelf();
        }
        address registration = _registrations[registrant];
        if (registration == address(0)) {
            revert NotRegistered(registrant);
        }
        if (registration != registrant) {
            revert CannotUpdateWhileSubscribed(registration);
        }
        address registrantRegistration = _registrations[registrantToCopy];
        if (registrantRegistration == address(0)) {
            revert NotRegistered(registrantToCopy);
        }
        _copyEntries(registrant, registrantToCopy);
    }

    /// @dev helper to copy entries from registrantToCopy to registrant and emit events
    function _copyEntries(address registrant, address registrantToCopy) private {
        EnumerableSet.AddressSet storage filteredOperatorsRef = _filteredOperators[registrantToCopy];
        EnumerableSet.Bytes32Set storage filteredCodeHashesRef = _filteredCodeHashes[registrantToCopy];
        uint256 filteredOperatorsLength = filteredOperatorsRef.length();
        uint256 filteredCodeHashesLength = filteredCodeHashesRef.length();
        unchecked {
            for (uint256 i = 0; i < filteredOperatorsLength; ++i) {
                address operator = filteredOperatorsRef.at(i);
                bool added = _filteredOperators[registrant].add(operator);
                if (added) {
                    emit OperatorUpdated(registrant, operator, true);
                }
            }
            for (uint256 i = 0; i < filteredCodeHashesLength; ++i) {
                bytes32 codehash = filteredCodeHashesRef.at(i);
                bool added = _filteredCodeHashes[registrant].add(codehash);
                if (added) {
                    emit CodeHashUpdated(registrant, codehash, true);
                }
            }
        }
    }

    //////////////////
    // VIEW METHODS //
    //////////////////

    /**
     * @notice Get the subscription address of a given registrant, if any.
     */
    function subscriptionOf(address registrant) external view returns (address subscription) {
        subscription = _registrations[registrant];
        if (subscription == address(0)) {
            revert NotRegistered(registrant);
        } else if (subscription == registrant) {
            subscription = address(0);
        }
    }

    /**
     * @notice Get the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscribers(address registrant) external view returns (address[] memory) {
        return _subscribers[registrant].values();
    }

    /**
     * @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscriberAt(address registrant, uint256 index) external view returns (address) {
        return _subscribers[registrant].at(index);
    }

    /**
     * @notice Returns true if operator is filtered by a given address or its subscription.
     */
    function isOperatorFiltered(address registrant, address operator) external view returns (bool) {
        address registration = _registrations[registrant];
        if (registration != registrant) {
            return _filteredOperators[registration].contains(operator);
        }
        return _filteredOperators[registrant].contains(operator);
    }

    /**
     * @notice Returns true if a codeHash is filtered by a given address or its subscription.
     */
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external view returns (bool) {
        address registration = _registrations[registrant];
        if (registration != registrant) {
            return _filteredCodeHashes[registration].contains(codeHash);
        }
        return _filteredCodeHashes[registrant].contains(codeHash);
    }

    /**
     * @notice Returns true if the hash of an address's code is filtered by a given address or its subscription.
     */
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external view returns (bool) {
        bytes32 codeHash = operatorWithCode.codehash;
        address registration = _registrations[registrant];
        if (registration != registrant) {
            return _filteredCodeHashes[registration].contains(codeHash);
        }
        return _filteredCodeHashes[registrant].contains(codeHash);
    }

    /**
     * @notice Returns true if an address has registered
     */
    function isRegistered(address registrant) external view returns (bool) {
        return _registrations[registrant] != address(0);
    }

    /**
     * @notice Returns a list of filtered operators for a given address or its subscription.
     */
    function filteredOperators(address registrant) external view returns (address[] memory) {
        address registration = _registrations[registrant];
        if (registration != registrant) {
            return _filteredOperators[registration].values();
        }
        return _filteredOperators[registrant].values();
    }

    /**
     * @notice Returns the set of filtered codeHashes for a given address or its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashes(address registrant) external view returns (bytes32[] memory) {
        address registration = _registrations[registrant];
        if (registration != registrant) {
            return _filteredCodeHashes[registration].values();
        }
        return _filteredCodeHashes[registrant].values();
    }

    /**
     * @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredOperatorAt(address registrant, uint256 index) external view returns (address) {
        address registration = _registrations[registrant];
        if (registration != registrant) {
            return _filteredOperators[registration].at(index);
        }
        return _filteredOperators[registrant].at(index);
    }

    /**
     * @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashAt(address registrant, uint256 index) external view returns (bytes32) {
        address registration = _registrations[registrant];
        if (registration != registrant) {
            return _filteredCodeHashes[registration].at(index);
        }
        return _filteredCodeHashes[registrant].at(index);
    }

    /// @dev Convenience method to compute the code hash of an arbitrary contract
    function codeHashOf(address a) external view returns (bytes32) {
        return a.codehash;
    }
}

File 12 of 15: OperatorFilterRegistryErrorsAndEvents.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

contract OperatorFilterRegistryErrorsAndEvents {
    error CannotFilterEOAs();
    error AddressAlreadyFiltered(address operator);
    error AddressNotFiltered(address operator);
    error CodeHashAlreadyFiltered(bytes32 codeHash);
    error CodeHashNotFiltered(bytes32 codeHash);
    error OnlyAddressOrOwner();
    error NotRegistered(address registrant);
    error AlreadyRegistered();
    error AlreadySubscribed(address subscription);
    error NotSubscribed();
    error CannotUpdateWhileSubscribed(address subscription);
    error CannotSubscribeToSelf();
    error CannotSubscribeToZeroAddress();
    error NotOwnable();
    error AddressFiltered(address filtered);
    error CodeHashFiltered(address account, bytes32 codeHash);
    error CannotSubscribeToRegistrantWithSubscription(address registrant);
    error CannotCopyFromSelf();

    event RegistrationUpdated(address indexed registrant, bool indexed registered);
    event OperatorUpdated(address indexed registrant, address indexed operator, bool indexed filtered);
    event OperatorsUpdated(address indexed registrant, address[] operators, bool indexed filtered);
    event CodeHashUpdated(address indexed registrant, bytes32 indexed codeHash, bool indexed filtered);
    event CodeHashesUpdated(address indexed registrant, bytes32[] codeHashes, bool indexed filtered);
    event SubscriptionUpdated(address indexed registrant, address indexed subscription, bool indexed subscribed);
}

File 13 of 15: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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);
    }
}

File 14 of 15: OwnedRegistrant.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol";
import {Ownable2Step} from "./EnumerableSet.sol";

/**
 * @title  OwnedRegistrant
 * @notice Ownable contract that registers itself with the OperatorFilterRegistry and administers its own entries,
 *         to facilitate a subscription whose ownership can be transferred.
 */
contract OwnedRegistrant is Ownable2Step {
    address constant registry = 0x000000000000AAeB6D7670E522A718067333cd4E;

    constructor(address _owner) {
        IOperatorFilterRegistry(registry).register(address(this));
        transferOwnership(_owner);
    }
}

File 15 of 15: Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./Math.sol";

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","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":"address[]","name":"_wallets","type":"address[]"}],"name":"Airdrops","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"Burn_status","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"MaxPerMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PublicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Public_Status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"Public_mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"pr","type":"uint256"}],"name":"Public_price","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"Public_status","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"RaffleMerkle","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RafflePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Raffle_Status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"walletAddress","type":"address"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"Raffle_checker","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"Raffle_mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"pr","type":"uint256"}],"name":"Raffle_price","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"Raffle_status","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"SetRaffleMerkle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"SetWhitelistMerkle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"WhitelistMerkle","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WhitelistPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Whitelist_Status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"walletAddress","type":"address"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"Whitelist_checker","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"Whitelist_mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"pr","type":"uint256"}],"name":"Whitelist_price","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"Whitelist_status","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"adminMint","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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"burnedby","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":"isBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"string","name":"_uri","type":"string"}],"name":"setBaseUri","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":[{"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":"","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266b1a2bc2ec50000600955667c585087238000600a55668e1bc9bf040000600b556000600c60006101000a81548160ff0219169083151502179055506000600c60016101000a81548160ff0219169083151502179055506000600c60026101000a81548160ff0219169083151502179055506000600c60036101000a81548160ff021916908315150217905550600a601155348015620000a357600080fd5b506040518060400160405280600a81526020017f4c6f7665204265617273000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f4c6f766542656172730000000000000000000000000000000000000000000000815250733cc6cdda760b79bafa08df41ecfa224f810dceb6600160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200031c578015620001e2576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001a89291906200049c565b600060405180830381600087803b158015620001c357600080fd5b505af1158015620001d8573d6000803e3d6000fd5b505050506200031b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200029c576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620002629291906200049c565b600060405180830381600087803b1580156200027d57600080fd5b505af115801562000292573d6000803e3d6000fd5b505050506200031a565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002e59190620004c9565b600060405180830381600087803b1580156200030057600080fd5b505af115801562000315573d6000803e3d6000fd5b505050505b5b5b505081600290816200032f919062000760565b50806003908162000341919062000760565b50620003526200038060201b60201c565b60008190555050506200037a6200036e6200038960201b60201c565b6200039160201b60201c565b62000847565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620004848262000457565b9050919050565b620004968162000477565b82525050565b6000604082019050620004b360008301856200048b565b620004c260208301846200048b565b9392505050565b6000602082019050620004e060008301846200048b565b92915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200056857607f821691505b6020821081036200057e576200057d62000520565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005e87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620005a9565b620005f48683620005a9565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620006416200063b62000635846200060c565b62000616565b6200060c565b9050919050565b6000819050919050565b6200065d8362000620565b620006756200066c8262000648565b848454620005b6565b825550505050565b600090565b6200068c6200067d565b6200069981848462000652565b505050565b5b81811015620006c157620006b560008262000682565b6001810190506200069f565b5050565b601f8211156200071057620006da8162000584565b620006e58462000599565b81016020851015620006f5578190505b6200070d620007048562000599565b8301826200069e565b50505b505050565b600082821c905092915050565b6000620007356000198460080262000715565b1980831691505092915050565b600062000750838362000722565b9150826002028217905092915050565b6200076b82620004e6565b67ffffffffffffffff811115620007875762000786620004f1565b5b6200079382546200054f565b620007a0828285620006c5565b600060209050601f831160018114620007d85760008415620007c3578287015190505b620007cf858262000742565b8655506200083f565b601f198416620007e88662000584565b60005b828110156200081257848901518255600182019150602085019450602081019050620007eb565b868310156200083257848901516200082e601f89168262000722565b8355505b6001600288020188555050505b505050505050565b614ecb80620008576000396000f3fe6080604052600436106102925760003560e01c806388dee2071161015a578063c1f26123116100c1578063dba063f61161007a578063dba063f61461098c578063dd700e60146109b5578063e378ea27146109e0578063e5db08af14610a09578063e985e9c514610a34578063f2fde38b14610a7157610292565b8063c1f2612314610880578063c2bea31b146108a9578063c87b56dd146108d2578063c8d150a71461090f578063d2afc28b14610938578063d8f6b9e21461096157610292565b8063b3df704a11610113578063b3df704a1461078e578063b88d4fde146107b7578063ba4a70f6146107d3578063bbb33a9a146107fe578063bcf83ff31461083b578063c18ccfbf1461086457610292565b806388dee207146106905780638da5cb5b146106bb57806395d89b41146106e6578063a0bcfc7f14610711578063a22cb4651461073a578063ae0400531461076357610292565b806342842e0e116101fe5780636352211e116101b75780636352211e1461058d5780636839be82146105ca5780636c0360eb146105e657806370a0823114610611578063715018a61461064e5780637d5f3f251461066557610292565b806342842e0e146104a257806342966c68146104be57806343236835146104e75780634760bc1c146105105780634a9e4c5a146105395780635c0656001461056257610292565b8063095ea7b311610250578063095ea7b3146103e157806318160ddd146103fd5780631ba5aacc1461042857806323b872dd146104445780633ccfd60b146104605780633cdbbcdb1461047757610292565b806280f6d51461029757806301ffc9a7146102d4578063028b050b1461031157806306fdde031461034e57806307ebec2714610379578063081812fc146103a4575b600080fd5b3480156102a357600080fd5b506102be60048036038101906102b991906137c1565b610a9a565b6040516102cb919061382f565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f691906138a2565b610acd565b60405161030891906138ea565b60405180910390f35b34801561031d57600080fd5b5061033860048036038101906103339190613996565b610b5f565b60405161034591906138ea565b60405180910390f35b34801561035a57600080fd5b50610363610bef565b6040516103709190613a86565b60405180910390f35b34801561038557600080fd5b5061038e610c81565b60405161039b91906138ea565b60405180910390f35b3480156103b057600080fd5b506103cb60048036038101906103c691906137c1565b610c94565b6040516103d8919061382f565b60405180910390f35b6103fb60048036038101906103f69190613aa8565b610d13565b005b34801561040957600080fd5b50610412610e57565b60405161041f9190613af7565b60405180910390f35b610442600480360381019061043d9190613b12565b610e6e565b005b61045e60048036038101906104599190613b72565b611072565b005b34801561046c57600080fd5b50610475611878565b005b34801561048357600080fd5b5061048c6118d0565b60405161049991906138ea565b60405180910390f35b6104bc60048036038101906104b79190613b72565b6118e3565b005b3480156104ca57600080fd5b506104e560048036038101906104e091906137c1565b611ae5565b005b3480156104f357600080fd5b5061050e60048036038101906105099190613d03565b611bdb565b005b34801561051c57600080fd5b5061053760048036038101906105329190613d78565b611c83565b005b34801561054557600080fd5b50610560600480360381019061055b91906137c1565b611ca8565b005b34801561056e57600080fd5b50610577611cba565b6040516105849190613af7565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af91906137c1565b611cc0565b6040516105c1919061382f565b60405180910390f35b6105e460048036038101906105df9190613b12565b611cd2565b005b3480156105f257600080fd5b506105fb611ed6565b6040516106089190613a86565b60405180910390f35b34801561061d57600080fd5b5061063860048036038101906106339190613da5565b611f64565b6040516106459190613af7565b60405180910390f35b34801561065a57600080fd5b5061066361201c565b005b34801561067157600080fd5b5061067a612030565b6040516106879190613af7565b60405180910390f35b34801561069c57600080fd5b506106a5612036565b6040516106b291906138ea565b60405180910390f35b3480156106c757600080fd5b506106d0612049565b6040516106dd919061382f565b60405180910390f35b3480156106f257600080fd5b506106fb612073565b6040516107089190613a86565b60405180910390f35b34801561071d57600080fd5b5061073860048036038101906107339190613e87565b612105565b005b34801561074657600080fd5b50610761600480360381019061075c9190613ed0565b612120565b005b34801561076f57600080fd5b5061077861222b565b6040516107859190613af7565b60405180910390f35b34801561079a57600080fd5b506107b560048036038101906107b09190613f46565b612231565b005b6107d160048036038101906107cc9190614014565b612243565b005b3480156107df57600080fd5b506107e86124ea565b6040516107f591906140a6565b60405180910390f35b34801561080a57600080fd5b5061082560048036038101906108209190613996565b6124f0565b60405161083291906138ea565b60405180910390f35b34801561084757600080fd5b50610862600480360381019061085d91906137c1565b612580565b005b61087e600480360381019061087991906137c1565b612592565b005b34801561088c57600080fd5b506108a760048036038101906108a291906137c1565b612724565b005b3480156108b557600080fd5b506108d060048036038101906108cb9190613d78565b6127d3565b005b3480156108de57600080fd5b506108f960048036038101906108f491906137c1565b6127f8565b6040516109069190613a86565b60405180910390f35b34801561091b57600080fd5b50610936600480360381019061093191906137c1565b6128a0565b005b34801561094457600080fd5b5061095f600480360381019061095a9190613d78565b6128b2565b005b34801561096d57600080fd5b506109766128d7565b6040516109839190613af7565b60405180910390f35b34801561099857600080fd5b506109b360048036038101906109ae9190613d78565b6128dd565b005b3480156109c157600080fd5b506109ca612902565b6040516109d791906140a6565b60405180910390f35b3480156109ec57600080fd5b50610a076004803603810190610a029190613f46565b612908565b005b348015610a1557600080fd5b50610a1e61291a565b604051610a2b91906138ea565b60405180910390f35b348015610a4057600080fd5b50610a5b6004803603810190610a5691906140c1565b61292d565b604051610a6891906138ea565b60405180910390f35b348015610a7d57600080fd5b50610a986004803603810190610a939190613da5565b6129c1565b005b60106020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b2857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b585750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6000610bd5838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e5486604051602001610bba9190614149565b60405160208183030381529060405280519060200120612a44565b15610be35760019050610be8565b600090505b9392505050565b606060028054610bfe90614193565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2a90614193565b8015610c775780601f10610c4c57610100808354040283529160200191610c77565b820191906000526020600020905b815481529060010190602001808311610c5a57829003601f168201915b5050505050905090565b600c60039054906101000a900460ff1681565b6000610c9f82612a5b565b610cd5576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d1e82611cc0565b90508073ffffffffffffffffffffffffffffffffffffffff16610d3f612aba565b73ffffffffffffffffffffffffffffffffffffffff1614610da257610d6b81610d66612aba565b61292d565b610da1576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610e61612ac2565b6001546000540303905090565b60011515600c60019054906101000a900460ff16151514610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb90614210565b60405180910390fd5b610f38828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600d5433604051602001610f1d9190614149565b60405160208183030381529060405280519060200120612a44565b610f77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6e9061427c565b60405180910390fd5b601154831115610fbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb39061430e565b60405180910390fd5b61271083610fc8610e57565b610fd2919061435d565b1115611013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100a906143dd565b60405180910390fd5b82600a5461102191906143fd565b341015611063576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105a9061448b565b60405180910390fd5b61106d3384612acb565b505050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611554573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036113f65760006110df83612ae9565b90508473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611146576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061115285612bb5565b915091506111688188611163612aba565b612bdc565b6111b45761117d87611178612aba565b61292d565b6111b3576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff160361121a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6112278787876001612c20565b801561123257600082555b600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611300866112dc898987612c26565b7c020000000000000000000000000000000000000000000000000000000017612c4e565b600460008781526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036113865760006001860190506000600460008381526020019081526020016000205403611384576000548114611383578360046000838152602001908152602001600020819055505b5b505b848673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46113ee8787876001612c79565b505050611872565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161143f9291906144ab565b602060405180830381865afa15801561145c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061148091906144e9565b801561151257506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016114d09291906144ab565b602060405180830381865afa1580156114ed573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061151191906144e9565b5b61155357336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161154a919061382f565b60405180910390fd5b5b600061155f83612ae9565b90508473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146115c6576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806115d285612bb5565b915091506115e881886115e3612aba565b612bdc565b611634576115fd876115f8612aba565b61292d565b611633576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff160361169a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6116a78787876001612c20565b80156116b257600082555b600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506117808661175c898987612c26565b7c020000000000000000000000000000000000000000000000000000000017612c4e565b600460008781526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036118065760006001860190506000600460008381526020019081526020016000205403611804576000548114611803578360046000838152602001908152602001600020819055505b5b505b848673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461186e8787876001612c79565b5050505b50505050565b611880612c7f565b611888612049565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156118cd573d6000803e3d6000fd5b50565b600c60019054906101000a900460ff1681565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611ac3573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036119655761196084848460405180602001604052806000815250612243565b611adf565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016119ae9291906144ab565b602060405180830381865afa1580156119cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119ef91906144e9565b8015611a8157506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611a3f9291906144ab565b602060405180830381865afa158015611a5c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a8091906144e9565b5b611ac257336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611ab9919061382f565b60405180910390fd5b5b611ade84848460405180602001604052806000815250612243565b5b50505050565b600c60039054906101000a900460ff16611b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2b90614562565b60405180910390fd5b611b3e3382612cfd565b611b7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b74906145ce565b60405180910390fd5b611b8681612ddb565b336010600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611be3612c7f565b6127108151611bf0610e57565b611bfa919061435d565b1115611c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c32906143dd565b60405180910390fd5b60005b8151811015611c7f57611c6c828281518110611c5d57611c5c6145ee565b5b60200260200101516001612acb565b8080611c779061461d565b915050611c3e565b5050565b611c8b612c7f565b80600c60036101000a81548160ff02191690831515021790555050565b611cb0612c7f565b80600b8190555050565b60095481565b6000611ccb82612ae9565b9050919050565b60011515600c60009054906101000a900460ff16151514611d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1f90614210565b60405180910390fd5b611d9c828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e5433604051602001611d819190614149565b60405160208183030381529060405280519060200120612a44565b611ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd2906146b1565b60405180910390fd5b82600b54611de991906143fd565b341015611e2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e229061448b565b60405180910390fd5b601154831115611e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e679061430e565b60405180910390fd5b61271083611e7c610e57565b611e86919061435d565b1115611ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebe906143dd565b60405180910390fd5b611ed13384612acb565b505050565b600f8054611ee390614193565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0f90614193565b8015611f5c5780601f10611f3157610100808354040283529160200191611f5c565b820191906000526020600020905b815481529060010190602001808311611f3f57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611fcb576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b612024612c7f565b61202e6000612de9565b565b600b5481565b600c60029054906101000a900460ff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461208290614193565b80601f01602080910402602001604051908101604052809291908181526020018280546120ae90614193565b80156120fb5780601f106120d0576101008083540402835291602001916120fb565b820191906000526020600020905b8154815290600101906020018083116120de57829003601f168201915b5050505050905090565b61210d612c7f565b80600f908161211c919061487d565b5050565b806007600061212d612aba565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166121da612aba565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161221f91906138ea565b60405180910390a35050565b600a5481565b612239612c7f565b80600d8190555050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115612475573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612317576122b0858585611072565b60008473ffffffffffffffffffffffffffffffffffffffff163b14612312576122db85858585612eaf565b612311576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b6124e3565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016123609291906144ab565b602060405180830381865afa15801561237d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123a191906144e9565b801561243357506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016123f19291906144ab565b602060405180830381865afa15801561240e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061243291906144e9565b5b61247457336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161246b919061382f565b60405180910390fd5b5b612480858585611072565b60008473ffffffffffffffffffffffffffffffffffffffff163b146124e2576124ab85858585612eaf565b6124e1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b5050505050565b600e5481565b6000612566838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600d548660405160200161254b9190614149565b60405160208183030381529060405280519060200120612a44565b156125745760019050612579565b600090505b9392505050565b612588612c7f565b8060098190555050565b60011515600c60029054906101000a900460ff161515146125e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125df9061499b565b60405180910390fd5b6000811161262b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262290614a07565b60405180910390fd5b61271081612637610e57565b612641919061435d565b1115612682576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612679906143dd565b60405180910390fd5b8060095461269091906143fd565b3410156126d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c99061448b565b60405180910390fd5b601154811115612717576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270e9061430e565b60405180910390fd5b6127213382612acb565b50565b61272c612c7f565b6000811161276f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276690614a07565b60405180910390fd5b6127108161277b610e57565b612785919061435d565b11156127c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127bd906143dd565b60405180910390fd5b6127d03382612acb565b50565b6127db612c7f565b80600c60016101000a81548160ff02191690831515021790555050565b606061280382612a5b565b612842576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283990614a99565b60405180910390fd5b6000600f805461285190614193565b90501161286d5760405180602001604052806000815250612899565b600f61287883612fff565b604051602001612889929190614bc4565b6040516020818303038152906040525b9050919050565b6128a8612c7f565b80600a8190555050565b6128ba612c7f565b80600c60006101000a81548160ff02191690831515021790555050565b60115481565b6128e5612c7f565b80600c60026101000a81548160ff02191690831515021790555050565b600d5481565b612910612c7f565b80600e8190555050565b600c60009054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6129c9612c7f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2f90614c65565b60405180910390fd5b612a4181612de9565b50565b600082612a5185846130cd565b1490509392505050565b600081612a66612ac2565b11158015612a75575060005482105b8015612ab3575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b612ae5828260405180602001604052806000815250613142565b5050565b60008082905080612af8612ac2565b11612b7e57600054811015612b7d5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612b7b575b60008103612b71576004600083600190039350838152602001908152602001600020549050612b47565b8092505050612bb0565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612c3d8686846131df565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b612c876131e8565b73ffffffffffffffffffffffffffffffffffffffff16612ca5612049565b73ffffffffffffffffffffffffffffffffffffffff1614612cfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cf290614cd1565b60405180910390fd5b565b6000612d0882612a5b565b612d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3e90614d63565b60405180910390fd5b6000612d5283611cc0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612dc157508373ffffffffffffffffffffffffffffffffffffffff16612da984610c94565b73ffffffffffffffffffffffffffffffffffffffff16145b80612dd25750612dd1818561292d565b5b91505092915050565b612de68160006131f0565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ed5612aba565b8786866040518563ffffffff1660e01b8152600401612ef79493929190614dd8565b6020604051808303816000875af1925050508015612f3357506040513d601f19601f82011682018060405250810190612f309190614e39565b60015b612fac573d8060008114612f63576040519150601f19603f3d011682016040523d82523d6000602084013e612f68565b606091505b506000815103612fa4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000600161300e84613442565b01905060008167ffffffffffffffff81111561302d5761302c613bc5565b5b6040519080825280601f01601f19166020018201604052801561305f5781602001600182028036833780820191505090505b509050600082602001820190505b6001156130c2578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816130b6576130b5614e66565b5b0494506000850361306d575b819350505050919050565b60008082905060005b84518110156131375760008582815181106130f4576130f36145ee565b5b602002602001015190508083116131165761310f8382613595565b9250613123565b6131208184613595565b92505b50808061312f9061461d565b9150506130d6565b508091505092915050565b61314c83836135ac565b60008373ffffffffffffffffffffffffffffffffffffffff163b146131da57600080549050600083820390505b61318c6000868380600101945086612eaf565b6131c2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106131795781600054146131d757600080fd5b50505b505050565b60009392505050565b600033905090565b60006131fb83612ae9565b9050600081905060008061320e86612bb5565b9150915084156132775761322a8184613225612aba565b612bdc565b6132765761323f8361323a612aba565b61292d565b613275576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b613285836000886001612c20565b801561329057600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613338836132f585600088612c26565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717612c4e565b600460008881526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008516036133be57600060018701905060006004600083815260200190815260200160002054036133bc5760005481146133bb578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613428836000886001612c79565b600160008154809291906001019190505550505050505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106134a0577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161349657613495614e66565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106134dd576d04ee2d6d415b85acef810000000083816134d3576134d2614e66565b5b0492506020810190505b662386f26fc10000831061350c57662386f26fc10000838161350257613501614e66565b5b0492506010810190505b6305f5e1008310613535576305f5e100838161352b5761352a614e66565b5b0492506008810190505b612710831061355a5761271083816135505761354f614e66565b5b0492506004810190505b6064831061357d576064838161357357613572614e66565b5b0492506002810190505b600a831061358c576001810190505b80915050919050565b600082600052816020526040600020905092915050565b600080549050600082036135ec576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6135f96000848385612c20565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613670836136616000866000612c26565b61366a85613767565b17612c4e565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461371157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506136d6565b506000820361374c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506137626000848385612c79565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b61379e8161378b565b81146137a957600080fd5b50565b6000813590506137bb81613795565b92915050565b6000602082840312156137d7576137d6613781565b5b60006137e5848285016137ac565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613819826137ee565b9050919050565b6138298161380e565b82525050565b60006020820190506138446000830184613820565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61387f8161384a565b811461388a57600080fd5b50565b60008135905061389c81613876565b92915050565b6000602082840312156138b8576138b7613781565b5b60006138c68482850161388d565b91505092915050565b60008115159050919050565b6138e4816138cf565b82525050565b60006020820190506138ff60008301846138db565b92915050565b61390e8161380e565b811461391957600080fd5b50565b60008135905061392b81613905565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261395657613955613931565b5b8235905067ffffffffffffffff81111561397357613972613936565b5b60208301915083602082028301111561398f5761398e61393b565b5b9250929050565b6000806000604084860312156139af576139ae613781565b5b60006139bd8682870161391c565b935050602084013567ffffffffffffffff8111156139de576139dd613786565b5b6139ea86828701613940565b92509250509250925092565b600081519050919050565b600082825260208201905092915050565b60005b83811015613a30578082015181840152602081019050613a15565b60008484015250505050565b6000601f19601f8301169050919050565b6000613a58826139f6565b613a628185613a01565b9350613a72818560208601613a12565b613a7b81613a3c565b840191505092915050565b60006020820190508181036000830152613aa08184613a4d565b905092915050565b60008060408385031215613abf57613abe613781565b5b6000613acd8582860161391c565b9250506020613ade858286016137ac565b9150509250929050565b613af18161378b565b82525050565b6000602082019050613b0c6000830184613ae8565b92915050565b600080600060408486031215613b2b57613b2a613781565b5b6000613b39868287016137ac565b935050602084013567ffffffffffffffff811115613b5a57613b59613786565b5b613b6686828701613940565b92509250509250925092565b600080600060608486031215613b8b57613b8a613781565b5b6000613b998682870161391c565b9350506020613baa8682870161391c565b9250506040613bbb868287016137ac565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613bfd82613a3c565b810181811067ffffffffffffffff82111715613c1c57613c1b613bc5565b5b80604052505050565b6000613c2f613777565b9050613c3b8282613bf4565b919050565b600067ffffffffffffffff821115613c5b57613c5a613bc5565b5b602082029050602081019050919050565b6000613c7f613c7a84613c40565b613c25565b90508083825260208201905060208402830185811115613ca257613ca161393b565b5b835b81811015613ccb5780613cb7888261391c565b845260208401935050602081019050613ca4565b5050509392505050565b600082601f830112613cea57613ce9613931565b5b8135613cfa848260208601613c6c565b91505092915050565b600060208284031215613d1957613d18613781565b5b600082013567ffffffffffffffff811115613d3757613d36613786565b5b613d4384828501613cd5565b91505092915050565b613d55816138cf565b8114613d6057600080fd5b50565b600081359050613d7281613d4c565b92915050565b600060208284031215613d8e57613d8d613781565b5b6000613d9c84828501613d63565b91505092915050565b600060208284031215613dbb57613dba613781565b5b6000613dc98482850161391c565b91505092915050565b600080fd5b600067ffffffffffffffff821115613df257613df1613bc5565b5b613dfb82613a3c565b9050602081019050919050565b82818337600083830152505050565b6000613e2a613e2584613dd7565b613c25565b905082815260208101848484011115613e4657613e45613dd2565b5b613e51848285613e08565b509392505050565b600082601f830112613e6e57613e6d613931565b5b8135613e7e848260208601613e17565b91505092915050565b600060208284031215613e9d57613e9c613781565b5b600082013567ffffffffffffffff811115613ebb57613eba613786565b5b613ec784828501613e59565b91505092915050565b60008060408385031215613ee757613ee6613781565b5b6000613ef58582860161391c565b9250506020613f0685828601613d63565b9150509250929050565b6000819050919050565b613f2381613f10565b8114613f2e57600080fd5b50565b600081359050613f4081613f1a565b92915050565b600060208284031215613f5c57613f5b613781565b5b6000613f6a84828501613f31565b91505092915050565b600067ffffffffffffffff821115613f8e57613f8d613bc5565b5b613f9782613a3c565b9050602081019050919050565b6000613fb7613fb284613f73565b613c25565b905082815260208101848484011115613fd357613fd2613dd2565b5b613fde848285613e08565b509392505050565b600082601f830112613ffb57613ffa613931565b5b813561400b848260208601613fa4565b91505092915050565b6000806000806080858703121561402e5761402d613781565b5b600061403c8782880161391c565b945050602061404d8782880161391c565b935050604061405e878288016137ac565b925050606085013567ffffffffffffffff81111561407f5761407e613786565b5b61408b87828801613fe6565b91505092959194509250565b6140a081613f10565b82525050565b60006020820190506140bb6000830184614097565b92915050565b600080604083850312156140d8576140d7613781565b5b60006140e68582860161391c565b92505060206140f78582860161391c565b9150509250929050565b60008160601b9050919050565b600061411982614101565b9050919050565b600061412b8261410e565b9050919050565b61414361413e8261380e565b614120565b82525050565b60006141558284614132565b60148201915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806141ab57607f821691505b6020821081036141be576141bd614164565b5b50919050565b7f4d494e5420484153204e4f542053544152544544205945540000000000000000600082015250565b60006141fa601883613a01565b9150614205826141c4565b602082019050919050565b60006020820190508181036000830152614229816141ed565b9050919050565b7f594f55522057414c4c4554204953204e4f542057484954454c49535445440000600082015250565b6000614266601e83613a01565b915061427182614230565b602082019050919050565b6000602082019050818103600083015261429581614259565b9050919050565b7f53454c4543544544204e554d424552204f46204e465453204e4f5420414c4c4f60008201527f57454420494e204f4e45205452414e53414354494f4e00000000000000000000602082015250565b60006142f8603683613a01565b91506143038261429c565b604082019050919050565b60006020820190508181036000830152614327816142eb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006143688261378b565b91506143738361378b565b925082820190508082111561438b5761438a61432e565b5b92915050565b7f536f6c64204f7574210000000000000000000000000000000000000000000000600082015250565b60006143c7600983613a01565b91506143d282614391565b602082019050919050565b600060208201905081810360008301526143f6816143ba565b9050919050565b60006144088261378b565b91506144138361378b565b92508282026144218161378b565b915082820484148315176144385761443761432e565b5b5092915050565b7f496e636f727265637420657468657220616d6f756e7400000000000000000000600082015250565b6000614475601683613a01565b91506144808261443f565b602082019050919050565b600060208201905081810360008301526144a481614468565b9050919050565b60006040820190506144c06000830185613820565b6144cd6020830184613820565b9392505050565b6000815190506144e381613d4c565b92915050565b6000602082840312156144ff576144fe613781565b5b600061450d848285016144d4565b91505092915050565b7f6275726e696e672064697361626c656400000000000000000000000000000000600082015250565b600061454c601083613a01565b915061455782614516565b602082019050919050565b6000602082019050818103600083015261457b8161453f565b9050919050565b7f6275726e2063616c6c6572206973206e6f7420617070726f7665640000000000600082015250565b60006145b8601b83613a01565b91506145c382614582565b602082019050919050565b600060208201905081810360008301526145e7816145ab565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006146288261378b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361465a5761465961432e565b5b600182019050919050565b7f594f55522057414c4c4554204953204e4f54204c495354454400000000000000600082015250565b600061469b601983613a01565b91506146a682614665565b602082019050919050565b600060208201905081810360008301526146ca8161468e565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026147337fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826146f6565b61473d86836146f6565b95508019841693508086168417925050509392505050565b6000819050919050565b600061477a6147756147708461378b565b614755565b61378b565b9050919050565b6000819050919050565b6147948361475f565b6147a86147a082614781565b848454614703565b825550505050565b600090565b6147bd6147b0565b6147c881848461478b565b505050565b5b818110156147ec576147e16000826147b5565b6001810190506147ce565b5050565b601f82111561483157614802816146d1565b61480b846146e6565b8101602085101561481a578190505b61482e614826856146e6565b8301826147cd565b50505b505050565b600082821c905092915050565b600061485460001984600802614836565b1980831691505092915050565b600061486d8383614843565b9150826002028217905092915050565b614886826139f6565b67ffffffffffffffff81111561489f5761489e613bc5565b5b6148a98254614193565b6148b48282856147f0565b600060209050601f8311600181146148e757600084156148d5578287015190505b6148df8582614861565b865550614947565b601f1984166148f5866146d1565b60005b8281101561491d578489015182556001820191506020850194506020810190506148f8565b8683101561493a5784890151614936601f891682614843565b8355505b6001600288020188555050505b505050505050565b7f53616c6520697320506175736564000000000000000000000000000000000000600082015250565b6000614985600e83613a01565b91506149908261494f565b602082019050919050565b600060208201905081810360008301526149b481614978565b9050919050565b7f4d696e74206174206c65617374206f6e6520746f6b656e000000000000000000600082015250565b60006149f1601783613a01565b91506149fc826149bb565b602082019050919050565b60006020820190508181036000830152614a20816149e4565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614a83602f83613a01565b9150614a8e82614a27565b604082019050919050565b60006020820190508181036000830152614ab281614a76565b9050919050565b600081905092915050565b60008154614ad181614193565b614adb8186614ab9565b94506001821660008114614af65760018114614b0b57614b3e565b60ff1983168652811515820286019350614b3e565b614b14856146d1565b60005b83811015614b3657815481890152600182019150602081019050614b17565b838801955050505b50505092915050565b6000614b52826139f6565b614b5c8185614ab9565b9350614b6c818560208601613a12565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000614bae600583614ab9565b9150614bb982614b78565b600582019050919050565b6000614bd08285614ac4565b9150614bdc8284614b47565b9150614be782614ba1565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614c4f602683613a01565b9150614c5a82614bf3565b604082019050919050565b60006020820190508181036000830152614c7e81614c42565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614cbb602083613a01565b9150614cc682614c85565b602082019050919050565b60006020820190508181036000830152614cea81614cae565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614d4d602c83613a01565b9150614d5882614cf1565b604082019050919050565b60006020820190508181036000830152614d7c81614d40565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614daa82614d83565b614db48185614d8e565b9350614dc4818560208601613a12565b614dcd81613a3c565b840191505092915050565b6000608082019050614ded6000830187613820565b614dfa6020830186613820565b614e076040830185613ae8565b8181036060830152614e198184614d9f565b905095945050505050565b600081519050614e3381613876565b92915050565b600060208284031215614e4f57614e4e613781565b5b6000614e5d84828501614e24565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fdfea2646970667358221220d3bc9ae6ba805c770f4e892e95d368810558cd51480f8c87a5a20506de25971d64736f6c63430008120033

Deployed Bytecode

0x6080604052600436106102925760003560e01c806388dee2071161015a578063c1f26123116100c1578063dba063f61161007a578063dba063f61461098c578063dd700e60146109b5578063e378ea27146109e0578063e5db08af14610a09578063e985e9c514610a34578063f2fde38b14610a7157610292565b8063c1f2612314610880578063c2bea31b146108a9578063c87b56dd146108d2578063c8d150a71461090f578063d2afc28b14610938578063d8f6b9e21461096157610292565b8063b3df704a11610113578063b3df704a1461078e578063b88d4fde146107b7578063ba4a70f6146107d3578063bbb33a9a146107fe578063bcf83ff31461083b578063c18ccfbf1461086457610292565b806388dee207146106905780638da5cb5b146106bb57806395d89b41146106e6578063a0bcfc7f14610711578063a22cb4651461073a578063ae0400531461076357610292565b806342842e0e116101fe5780636352211e116101b75780636352211e1461058d5780636839be82146105ca5780636c0360eb146105e657806370a0823114610611578063715018a61461064e5780637d5f3f251461066557610292565b806342842e0e146104a257806342966c68146104be57806343236835146104e75780634760bc1c146105105780634a9e4c5a146105395780635c0656001461056257610292565b8063095ea7b311610250578063095ea7b3146103e157806318160ddd146103fd5780631ba5aacc1461042857806323b872dd146104445780633ccfd60b146104605780633cdbbcdb1461047757610292565b806280f6d51461029757806301ffc9a7146102d4578063028b050b1461031157806306fdde031461034e57806307ebec2714610379578063081812fc146103a4575b600080fd5b3480156102a357600080fd5b506102be60048036038101906102b991906137c1565b610a9a565b6040516102cb919061382f565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f691906138a2565b610acd565b60405161030891906138ea565b60405180910390f35b34801561031d57600080fd5b5061033860048036038101906103339190613996565b610b5f565b60405161034591906138ea565b60405180910390f35b34801561035a57600080fd5b50610363610bef565b6040516103709190613a86565b60405180910390f35b34801561038557600080fd5b5061038e610c81565b60405161039b91906138ea565b60405180910390f35b3480156103b057600080fd5b506103cb60048036038101906103c691906137c1565b610c94565b6040516103d8919061382f565b60405180910390f35b6103fb60048036038101906103f69190613aa8565b610d13565b005b34801561040957600080fd5b50610412610e57565b60405161041f9190613af7565b60405180910390f35b610442600480360381019061043d9190613b12565b610e6e565b005b61045e60048036038101906104599190613b72565b611072565b005b34801561046c57600080fd5b50610475611878565b005b34801561048357600080fd5b5061048c6118d0565b60405161049991906138ea565b60405180910390f35b6104bc60048036038101906104b79190613b72565b6118e3565b005b3480156104ca57600080fd5b506104e560048036038101906104e091906137c1565b611ae5565b005b3480156104f357600080fd5b5061050e60048036038101906105099190613d03565b611bdb565b005b34801561051c57600080fd5b5061053760048036038101906105329190613d78565b611c83565b005b34801561054557600080fd5b50610560600480360381019061055b91906137c1565b611ca8565b005b34801561056e57600080fd5b50610577611cba565b6040516105849190613af7565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af91906137c1565b611cc0565b6040516105c1919061382f565b60405180910390f35b6105e460048036038101906105df9190613b12565b611cd2565b005b3480156105f257600080fd5b506105fb611ed6565b6040516106089190613a86565b60405180910390f35b34801561061d57600080fd5b5061063860048036038101906106339190613da5565b611f64565b6040516106459190613af7565b60405180910390f35b34801561065a57600080fd5b5061066361201c565b005b34801561067157600080fd5b5061067a612030565b6040516106879190613af7565b60405180910390f35b34801561069c57600080fd5b506106a5612036565b6040516106b291906138ea565b60405180910390f35b3480156106c757600080fd5b506106d0612049565b6040516106dd919061382f565b60405180910390f35b3480156106f257600080fd5b506106fb612073565b6040516107089190613a86565b60405180910390f35b34801561071d57600080fd5b5061073860048036038101906107339190613e87565b612105565b005b34801561074657600080fd5b50610761600480360381019061075c9190613ed0565b612120565b005b34801561076f57600080fd5b5061077861222b565b6040516107859190613af7565b60405180910390f35b34801561079a57600080fd5b506107b560048036038101906107b09190613f46565b612231565b005b6107d160048036038101906107cc9190614014565b612243565b005b3480156107df57600080fd5b506107e86124ea565b6040516107f591906140a6565b60405180910390f35b34801561080a57600080fd5b5061082560048036038101906108209190613996565b6124f0565b60405161083291906138ea565b60405180910390f35b34801561084757600080fd5b50610862600480360381019061085d91906137c1565b612580565b005b61087e600480360381019061087991906137c1565b612592565b005b34801561088c57600080fd5b506108a760048036038101906108a291906137c1565b612724565b005b3480156108b557600080fd5b506108d060048036038101906108cb9190613d78565b6127d3565b005b3480156108de57600080fd5b506108f960048036038101906108f491906137c1565b6127f8565b6040516109069190613a86565b60405180910390f35b34801561091b57600080fd5b50610936600480360381019061093191906137c1565b6128a0565b005b34801561094457600080fd5b5061095f600480360381019061095a9190613d78565b6128b2565b005b34801561096d57600080fd5b506109766128d7565b6040516109839190613af7565b60405180910390f35b34801561099857600080fd5b506109b360048036038101906109ae9190613d78565b6128dd565b005b3480156109c157600080fd5b506109ca612902565b6040516109d791906140a6565b60405180910390f35b3480156109ec57600080fd5b50610a076004803603810190610a029190613f46565b612908565b005b348015610a1557600080fd5b50610a1e61291a565b604051610a2b91906138ea565b60405180910390f35b348015610a4057600080fd5b50610a5b6004803603810190610a5691906140c1565b61292d565b604051610a6891906138ea565b60405180910390f35b348015610a7d57600080fd5b50610a986004803603810190610a939190613da5565b6129c1565b005b60106020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b2857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b585750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6000610bd5838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e5486604051602001610bba9190614149565b60405160208183030381529060405280519060200120612a44565b15610be35760019050610be8565b600090505b9392505050565b606060028054610bfe90614193565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2a90614193565b8015610c775780601f10610c4c57610100808354040283529160200191610c77565b820191906000526020600020905b815481529060010190602001808311610c5a57829003601f168201915b5050505050905090565b600c60039054906101000a900460ff1681565b6000610c9f82612a5b565b610cd5576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d1e82611cc0565b90508073ffffffffffffffffffffffffffffffffffffffff16610d3f612aba565b73ffffffffffffffffffffffffffffffffffffffff1614610da257610d6b81610d66612aba565b61292d565b610da1576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610e61612ac2565b6001546000540303905090565b60011515600c60019054906101000a900460ff16151514610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb90614210565b60405180910390fd5b610f38828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600d5433604051602001610f1d9190614149565b60405160208183030381529060405280519060200120612a44565b610f77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6e9061427c565b60405180910390fd5b601154831115610fbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb39061430e565b60405180910390fd5b61271083610fc8610e57565b610fd2919061435d565b1115611013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100a906143dd565b60405180910390fd5b82600a5461102191906143fd565b341015611063576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105a9061448b565b60405180910390fd5b61106d3384612acb565b505050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611554573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036113f65760006110df83612ae9565b90508473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611146576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061115285612bb5565b915091506111688188611163612aba565b612bdc565b6111b45761117d87611178612aba565b61292d565b6111b3576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff160361121a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6112278787876001612c20565b801561123257600082555b600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611300866112dc898987612c26565b7c020000000000000000000000000000000000000000000000000000000017612c4e565b600460008781526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036113865760006001860190506000600460008381526020019081526020016000205403611384576000548114611383578360046000838152602001908152602001600020819055505b5b505b848673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46113ee8787876001612c79565b505050611872565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161143f9291906144ab565b602060405180830381865afa15801561145c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061148091906144e9565b801561151257506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016114d09291906144ab565b602060405180830381865afa1580156114ed573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061151191906144e9565b5b61155357336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161154a919061382f565b60405180910390fd5b5b600061155f83612ae9565b90508473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146115c6576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806115d285612bb5565b915091506115e881886115e3612aba565b612bdc565b611634576115fd876115f8612aba565b61292d565b611633576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff160361169a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6116a78787876001612c20565b80156116b257600082555b600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506117808661175c898987612c26565b7c020000000000000000000000000000000000000000000000000000000017612c4e565b600460008781526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036118065760006001860190506000600460008381526020019081526020016000205403611804576000548114611803578360046000838152602001908152602001600020819055505b5b505b848673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461186e8787876001612c79565b5050505b50505050565b611880612c7f565b611888612049565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156118cd573d6000803e3d6000fd5b50565b600c60019054906101000a900460ff1681565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611ac3573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036119655761196084848460405180602001604052806000815250612243565b611adf565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016119ae9291906144ab565b602060405180830381865afa1580156119cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119ef91906144e9565b8015611a8157506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611a3f9291906144ab565b602060405180830381865afa158015611a5c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a8091906144e9565b5b611ac257336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611ab9919061382f565b60405180910390fd5b5b611ade84848460405180602001604052806000815250612243565b5b50505050565b600c60039054906101000a900460ff16611b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2b90614562565b60405180910390fd5b611b3e3382612cfd565b611b7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b74906145ce565b60405180910390fd5b611b8681612ddb565b336010600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611be3612c7f565b6127108151611bf0610e57565b611bfa919061435d565b1115611c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c32906143dd565b60405180910390fd5b60005b8151811015611c7f57611c6c828281518110611c5d57611c5c6145ee565b5b60200260200101516001612acb565b8080611c779061461d565b915050611c3e565b5050565b611c8b612c7f565b80600c60036101000a81548160ff02191690831515021790555050565b611cb0612c7f565b80600b8190555050565b60095481565b6000611ccb82612ae9565b9050919050565b60011515600c60009054906101000a900460ff16151514611d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1f90614210565b60405180910390fd5b611d9c828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e5433604051602001611d819190614149565b60405160208183030381529060405280519060200120612a44565b611ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd2906146b1565b60405180910390fd5b82600b54611de991906143fd565b341015611e2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e229061448b565b60405180910390fd5b601154831115611e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e679061430e565b60405180910390fd5b61271083611e7c610e57565b611e86919061435d565b1115611ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebe906143dd565b60405180910390fd5b611ed13384612acb565b505050565b600f8054611ee390614193565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0f90614193565b8015611f5c5780601f10611f3157610100808354040283529160200191611f5c565b820191906000526020600020905b815481529060010190602001808311611f3f57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611fcb576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b612024612c7f565b61202e6000612de9565b565b600b5481565b600c60029054906101000a900460ff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461208290614193565b80601f01602080910402602001604051908101604052809291908181526020018280546120ae90614193565b80156120fb5780601f106120d0576101008083540402835291602001916120fb565b820191906000526020600020905b8154815290600101906020018083116120de57829003601f168201915b5050505050905090565b61210d612c7f565b80600f908161211c919061487d565b5050565b806007600061212d612aba565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166121da612aba565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161221f91906138ea565b60405180910390a35050565b600a5481565b612239612c7f565b80600d8190555050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115612475573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612317576122b0858585611072565b60008473ffffffffffffffffffffffffffffffffffffffff163b14612312576122db85858585612eaf565b612311576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b6124e3565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016123609291906144ab565b602060405180830381865afa15801561237d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123a191906144e9565b801561243357506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016123f19291906144ab565b602060405180830381865afa15801561240e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061243291906144e9565b5b61247457336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161246b919061382f565b60405180910390fd5b5b612480858585611072565b60008473ffffffffffffffffffffffffffffffffffffffff163b146124e2576124ab85858585612eaf565b6124e1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b5050505050565b600e5481565b6000612566838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600d548660405160200161254b9190614149565b60405160208183030381529060405280519060200120612a44565b156125745760019050612579565b600090505b9392505050565b612588612c7f565b8060098190555050565b60011515600c60029054906101000a900460ff161515146125e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125df9061499b565b60405180910390fd5b6000811161262b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262290614a07565b60405180910390fd5b61271081612637610e57565b612641919061435d565b1115612682576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612679906143dd565b60405180910390fd5b8060095461269091906143fd565b3410156126d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c99061448b565b60405180910390fd5b601154811115612717576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270e9061430e565b60405180910390fd5b6127213382612acb565b50565b61272c612c7f565b6000811161276f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276690614a07565b60405180910390fd5b6127108161277b610e57565b612785919061435d565b11156127c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127bd906143dd565b60405180910390fd5b6127d03382612acb565b50565b6127db612c7f565b80600c60016101000a81548160ff02191690831515021790555050565b606061280382612a5b565b612842576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283990614a99565b60405180910390fd5b6000600f805461285190614193565b90501161286d5760405180602001604052806000815250612899565b600f61287883612fff565b604051602001612889929190614bc4565b6040516020818303038152906040525b9050919050565b6128a8612c7f565b80600a8190555050565b6128ba612c7f565b80600c60006101000a81548160ff02191690831515021790555050565b60115481565b6128e5612c7f565b80600c60026101000a81548160ff02191690831515021790555050565b600d5481565b612910612c7f565b80600e8190555050565b600c60009054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6129c9612c7f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2f90614c65565b60405180910390fd5b612a4181612de9565b50565b600082612a5185846130cd565b1490509392505050565b600081612a66612ac2565b11158015612a75575060005482105b8015612ab3575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b612ae5828260405180602001604052806000815250613142565b5050565b60008082905080612af8612ac2565b11612b7e57600054811015612b7d5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612b7b575b60008103612b71576004600083600190039350838152602001908152602001600020549050612b47565b8092505050612bb0565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612c3d8686846131df565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b612c876131e8565b73ffffffffffffffffffffffffffffffffffffffff16612ca5612049565b73ffffffffffffffffffffffffffffffffffffffff1614612cfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cf290614cd1565b60405180910390fd5b565b6000612d0882612a5b565b612d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3e90614d63565b60405180910390fd5b6000612d5283611cc0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612dc157508373ffffffffffffffffffffffffffffffffffffffff16612da984610c94565b73ffffffffffffffffffffffffffffffffffffffff16145b80612dd25750612dd1818561292d565b5b91505092915050565b612de68160006131f0565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ed5612aba565b8786866040518563ffffffff1660e01b8152600401612ef79493929190614dd8565b6020604051808303816000875af1925050508015612f3357506040513d601f19601f82011682018060405250810190612f309190614e39565b60015b612fac573d8060008114612f63576040519150601f19603f3d011682016040523d82523d6000602084013e612f68565b606091505b506000815103612fa4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000600161300e84613442565b01905060008167ffffffffffffffff81111561302d5761302c613bc5565b5b6040519080825280601f01601f19166020018201604052801561305f5781602001600182028036833780820191505090505b509050600082602001820190505b6001156130c2578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816130b6576130b5614e66565b5b0494506000850361306d575b819350505050919050565b60008082905060005b84518110156131375760008582815181106130f4576130f36145ee565b5b602002602001015190508083116131165761310f8382613595565b9250613123565b6131208184613595565b92505b50808061312f9061461d565b9150506130d6565b508091505092915050565b61314c83836135ac565b60008373ffffffffffffffffffffffffffffffffffffffff163b146131da57600080549050600083820390505b61318c6000868380600101945086612eaf565b6131c2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106131795781600054146131d757600080fd5b50505b505050565b60009392505050565b600033905090565b60006131fb83612ae9565b9050600081905060008061320e86612bb5565b9150915084156132775761322a8184613225612aba565b612bdc565b6132765761323f8361323a612aba565b61292d565b613275576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b613285836000886001612c20565b801561329057600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613338836132f585600088612c26565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717612c4e565b600460008881526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008516036133be57600060018701905060006004600083815260200190815260200160002054036133bc5760005481146133bb578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613428836000886001612c79565b600160008154809291906001019190505550505050505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106134a0577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161349657613495614e66565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106134dd576d04ee2d6d415b85acef810000000083816134d3576134d2614e66565b5b0492506020810190505b662386f26fc10000831061350c57662386f26fc10000838161350257613501614e66565b5b0492506010810190505b6305f5e1008310613535576305f5e100838161352b5761352a614e66565b5b0492506008810190505b612710831061355a5761271083816135505761354f614e66565b5b0492506004810190505b6064831061357d576064838161357357613572614e66565b5b0492506002810190505b600a831061358c576001810190505b80915050919050565b600082600052816020526040600020905092915050565b600080549050600082036135ec576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6135f96000848385612c20565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613670836136616000866000612c26565b61366a85613767565b17612c4e565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461371157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506136d6565b506000820361374c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506137626000848385612c79565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b61379e8161378b565b81146137a957600080fd5b50565b6000813590506137bb81613795565b92915050565b6000602082840312156137d7576137d6613781565b5b60006137e5848285016137ac565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613819826137ee565b9050919050565b6138298161380e565b82525050565b60006020820190506138446000830184613820565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61387f8161384a565b811461388a57600080fd5b50565b60008135905061389c81613876565b92915050565b6000602082840312156138b8576138b7613781565b5b60006138c68482850161388d565b91505092915050565b60008115159050919050565b6138e4816138cf565b82525050565b60006020820190506138ff60008301846138db565b92915050565b61390e8161380e565b811461391957600080fd5b50565b60008135905061392b81613905565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261395657613955613931565b5b8235905067ffffffffffffffff81111561397357613972613936565b5b60208301915083602082028301111561398f5761398e61393b565b5b9250929050565b6000806000604084860312156139af576139ae613781565b5b60006139bd8682870161391c565b935050602084013567ffffffffffffffff8111156139de576139dd613786565b5b6139ea86828701613940565b92509250509250925092565b600081519050919050565b600082825260208201905092915050565b60005b83811015613a30578082015181840152602081019050613a15565b60008484015250505050565b6000601f19601f8301169050919050565b6000613a58826139f6565b613a628185613a01565b9350613a72818560208601613a12565b613a7b81613a3c565b840191505092915050565b60006020820190508181036000830152613aa08184613a4d565b905092915050565b60008060408385031215613abf57613abe613781565b5b6000613acd8582860161391c565b9250506020613ade858286016137ac565b9150509250929050565b613af18161378b565b82525050565b6000602082019050613b0c6000830184613ae8565b92915050565b600080600060408486031215613b2b57613b2a613781565b5b6000613b39868287016137ac565b935050602084013567ffffffffffffffff811115613b5a57613b59613786565b5b613b6686828701613940565b92509250509250925092565b600080600060608486031215613b8b57613b8a613781565b5b6000613b998682870161391c565b9350506020613baa8682870161391c565b9250506040613bbb868287016137ac565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613bfd82613a3c565b810181811067ffffffffffffffff82111715613c1c57613c1b613bc5565b5b80604052505050565b6000613c2f613777565b9050613c3b8282613bf4565b919050565b600067ffffffffffffffff821115613c5b57613c5a613bc5565b5b602082029050602081019050919050565b6000613c7f613c7a84613c40565b613c25565b90508083825260208201905060208402830185811115613ca257613ca161393b565b5b835b81811015613ccb5780613cb7888261391c565b845260208401935050602081019050613ca4565b5050509392505050565b600082601f830112613cea57613ce9613931565b5b8135613cfa848260208601613c6c565b91505092915050565b600060208284031215613d1957613d18613781565b5b600082013567ffffffffffffffff811115613d3757613d36613786565b5b613d4384828501613cd5565b91505092915050565b613d55816138cf565b8114613d6057600080fd5b50565b600081359050613d7281613d4c565b92915050565b600060208284031215613d8e57613d8d613781565b5b6000613d9c84828501613d63565b91505092915050565b600060208284031215613dbb57613dba613781565b5b6000613dc98482850161391c565b91505092915050565b600080fd5b600067ffffffffffffffff821115613df257613df1613bc5565b5b613dfb82613a3c565b9050602081019050919050565b82818337600083830152505050565b6000613e2a613e2584613dd7565b613c25565b905082815260208101848484011115613e4657613e45613dd2565b5b613e51848285613e08565b509392505050565b600082601f830112613e6e57613e6d613931565b5b8135613e7e848260208601613e17565b91505092915050565b600060208284031215613e9d57613e9c613781565b5b600082013567ffffffffffffffff811115613ebb57613eba613786565b5b613ec784828501613e59565b91505092915050565b60008060408385031215613ee757613ee6613781565b5b6000613ef58582860161391c565b9250506020613f0685828601613d63565b9150509250929050565b6000819050919050565b613f2381613f10565b8114613f2e57600080fd5b50565b600081359050613f4081613f1a565b92915050565b600060208284031215613f5c57613f5b613781565b5b6000613f6a84828501613f31565b91505092915050565b600067ffffffffffffffff821115613f8e57613f8d613bc5565b5b613f9782613a3c565b9050602081019050919050565b6000613fb7613fb284613f73565b613c25565b905082815260208101848484011115613fd357613fd2613dd2565b5b613fde848285613e08565b509392505050565b600082601f830112613ffb57613ffa613931565b5b813561400b848260208601613fa4565b91505092915050565b6000806000806080858703121561402e5761402d613781565b5b600061403c8782880161391c565b945050602061404d8782880161391c565b935050604061405e878288016137ac565b925050606085013567ffffffffffffffff81111561407f5761407e613786565b5b61408b87828801613fe6565b91505092959194509250565b6140a081613f10565b82525050565b60006020820190506140bb6000830184614097565b92915050565b600080604083850312156140d8576140d7613781565b5b60006140e68582860161391c565b92505060206140f78582860161391c565b9150509250929050565b60008160601b9050919050565b600061411982614101565b9050919050565b600061412b8261410e565b9050919050565b61414361413e8261380e565b614120565b82525050565b60006141558284614132565b60148201915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806141ab57607f821691505b6020821081036141be576141bd614164565b5b50919050565b7f4d494e5420484153204e4f542053544152544544205945540000000000000000600082015250565b60006141fa601883613a01565b9150614205826141c4565b602082019050919050565b60006020820190508181036000830152614229816141ed565b9050919050565b7f594f55522057414c4c4554204953204e4f542057484954454c49535445440000600082015250565b6000614266601e83613a01565b915061427182614230565b602082019050919050565b6000602082019050818103600083015261429581614259565b9050919050565b7f53454c4543544544204e554d424552204f46204e465453204e4f5420414c4c4f60008201527f57454420494e204f4e45205452414e53414354494f4e00000000000000000000602082015250565b60006142f8603683613a01565b91506143038261429c565b604082019050919050565b60006020820190508181036000830152614327816142eb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006143688261378b565b91506143738361378b565b925082820190508082111561438b5761438a61432e565b5b92915050565b7f536f6c64204f7574210000000000000000000000000000000000000000000000600082015250565b60006143c7600983613a01565b91506143d282614391565b602082019050919050565b600060208201905081810360008301526143f6816143ba565b9050919050565b60006144088261378b565b91506144138361378b565b92508282026144218161378b565b915082820484148315176144385761443761432e565b5b5092915050565b7f496e636f727265637420657468657220616d6f756e7400000000000000000000600082015250565b6000614475601683613a01565b91506144808261443f565b602082019050919050565b600060208201905081810360008301526144a481614468565b9050919050565b60006040820190506144c06000830185613820565b6144cd6020830184613820565b9392505050565b6000815190506144e381613d4c565b92915050565b6000602082840312156144ff576144fe613781565b5b600061450d848285016144d4565b91505092915050565b7f6275726e696e672064697361626c656400000000000000000000000000000000600082015250565b600061454c601083613a01565b915061455782614516565b602082019050919050565b6000602082019050818103600083015261457b8161453f565b9050919050565b7f6275726e2063616c6c6572206973206e6f7420617070726f7665640000000000600082015250565b60006145b8601b83613a01565b91506145c382614582565b602082019050919050565b600060208201905081810360008301526145e7816145ab565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006146288261378b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361465a5761465961432e565b5b600182019050919050565b7f594f55522057414c4c4554204953204e4f54204c495354454400000000000000600082015250565b600061469b601983613a01565b91506146a682614665565b602082019050919050565b600060208201905081810360008301526146ca8161468e565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026147337fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826146f6565b61473d86836146f6565b95508019841693508086168417925050509392505050565b6000819050919050565b600061477a6147756147708461378b565b614755565b61378b565b9050919050565b6000819050919050565b6147948361475f565b6147a86147a082614781565b848454614703565b825550505050565b600090565b6147bd6147b0565b6147c881848461478b565b505050565b5b818110156147ec576147e16000826147b5565b6001810190506147ce565b5050565b601f82111561483157614802816146d1565b61480b846146e6565b8101602085101561481a578190505b61482e614826856146e6565b8301826147cd565b50505b505050565b600082821c905092915050565b600061485460001984600802614836565b1980831691505092915050565b600061486d8383614843565b9150826002028217905092915050565b614886826139f6565b67ffffffffffffffff81111561489f5761489e613bc5565b5b6148a98254614193565b6148b48282856147f0565b600060209050601f8311600181146148e757600084156148d5578287015190505b6148df8582614861565b865550614947565b601f1984166148f5866146d1565b60005b8281101561491d578489015182556001820191506020850194506020810190506148f8565b8683101561493a5784890151614936601f891682614843565b8355505b6001600288020188555050505b505050505050565b7f53616c6520697320506175736564000000000000000000000000000000000000600082015250565b6000614985600e83613a01565b91506149908261494f565b602082019050919050565b600060208201905081810360008301526149b481614978565b9050919050565b7f4d696e74206174206c65617374206f6e6520746f6b656e000000000000000000600082015250565b60006149f1601783613a01565b91506149fc826149bb565b602082019050919050565b60006020820190508181036000830152614a20816149e4565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614a83602f83613a01565b9150614a8e82614a27565b604082019050919050565b60006020820190508181036000830152614ab281614a76565b9050919050565b600081905092915050565b60008154614ad181614193565b614adb8186614ab9565b94506001821660008114614af65760018114614b0b57614b3e565b60ff1983168652811515820286019350614b3e565b614b14856146d1565b60005b83811015614b3657815481890152600182019150602081019050614b17565b838801955050505b50505092915050565b6000614b52826139f6565b614b5c8185614ab9565b9350614b6c818560208601613a12565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000614bae600583614ab9565b9150614bb982614b78565b600582019050919050565b6000614bd08285614ac4565b9150614bdc8284614b47565b9150614be782614ba1565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614c4f602683613a01565b9150614c5a82614bf3565b604082019050919050565b60006020820190508181036000830152614c7e81614c42565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614cbb602083613a01565b9150614cc682614c85565b602082019050919050565b60006020820190508181036000830152614cea81614cae565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614d4d602c83613a01565b9150614d5882614cf1565b604082019050919050565b60006020820190508181036000830152614d7c81614d40565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614daa82614d83565b614db48185614d8e565b9350614dc4818560208601613a12565b614dcd81613a3c565b840191505092915050565b6000608082019050614ded6000830187613820565b614dfa6020830186613820565b614e076040830185613ae8565b8181036060830152614e198184614d9f565b905095945050505050565b600081519050614e3381613876565b92915050565b600060208284031215614e4f57614e4e613781565b5b6000614e5d84828501614e24565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fdfea2646970667358221220d3bc9ae6ba805c770f4e892e95d368810558cd51480f8c87a5a20506de25971d64736f6c63430008120033

Deployed Bytecode Sourcemap

177:5377:14:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;699:43;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9474:639:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2884:310:14;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10376:100:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;554:31:14;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16867:218:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16300:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6127:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1350:604:14;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20865:2850:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5445:106:14;;;;;;;;;;;;;:::i;:::-;;471:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23811:218:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4865:294:14;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3431:237;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4543:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5353:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;259:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11769:152:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1962:594:14;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;665:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7311:233:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1884:103:11;;;;;;;;;;;;;:::i;:::-;;350:36:14;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;514:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1236:87:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10552:104:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4132:92:14;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17425:234:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;302:40:14;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4645:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24627:432:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;629:27:14;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2562:316;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5165:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;882:460;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3200:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4230:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3826:298;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5256:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4338:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;751:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4440:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;592:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4756:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;431:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17816:164:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2142:201:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;699:43:14;;;;;;;;;;;;;;;;;;;;;;:::o;9474:639:2:-;9559:4;9898:10;9883:25;;:11;:25;;;;:102;;;;9975:10;9960:25;;:11;:25;;;;9883:102;:179;;;;10052:10;10037:25;;:11;:25;;;;9883:179;9863:199;;9474:639;;;:::o;2884:310:14:-;2984:4;3004:87;3023:11;;3004:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3035:12;;3075:13;3058:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;3048:42;;;;;;3004:18;:87::i;:::-;3001:178;;;3124:4;3117:11;;;;3001:178;3172:5;3165:12;;2884:310;;;;;;:::o;10376:100:2:-;10430:13;10463:5;10456:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10376:100;:::o;554:31:14:-;;;;;;;;;;;;;:::o;16867:218:2:-;16943:7;16968:16;16976:7;16968;:16::i;:::-;16963:64;;16993:34;;;;;;;;;;;;;;16963:64;17047:15;:24;17063:7;17047:24;;;;;;;;;;;:30;;;;;;;;;;;;17040:37;;16867:218;;;:::o;16300:408::-;16389:13;16405:16;16413:7;16405;:16::i;:::-;16389:32;;16461:5;16438:28;;:19;:17;:19::i;:::-;:28;;;16434:175;;16486:44;16503:5;16510:19;:17;:19::i;:::-;16486:16;:44::i;:::-;16481:128;;16558:35;;;;;;;;;;;;;;16481:128;16434:175;16654:2;16621:15;:24;16637:7;16621:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;16692:7;16688:2;16672:28;;16681:5;16672:28;;;;;;;;;;;;16378:330;16300:408;;:::o;6127:323::-;6188:7;6416:15;:13;:15::i;:::-;6401:12;;6385:13;;:28;:46;6378:53;;6127:323;:::o;1350:604:14:-;1485:4;1465:24;;:16;;;;;;;;;;;:24;;;1457:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;1537:87;1556:11;;1537:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1568:15;;1611:10;1594:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;1584:39;;;;;;1537:18;:87::i;:::-;1529:129;;;;;;;;;;;;:::i;:::-;;;;;;;;;1687:10;;1677:6;:20;;1669:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;419:5;1791:6;1775:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;1767:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;1873:6;1856:14;;:23;;;;:::i;:::-;1843:9;:36;;1835:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;1917:29;1927:10;1939:6;1917:9;:29::i;:::-;1350:604;;;:::o;20865:2850:2:-;21016:4;1475:1:10;310:42;1429:43;;;:47;1425:683;;;1712:10;1704:18;;:4;:18;;;1700:82;;21032:27:2::1;21062;21081:7;21062:18;:27::i;:::-;21032:57;;21147:4;21106:45;;21122:19;21106:45;;;21102:86;;21160:28;;;;;;;;;;;;;;21102:86;21202:27;21231:23:::0;21258:35:::1;21285:7;21258:26;:35::i;:::-;21201:92;;;;21393:68;21418:15;21435:4;21441:19;:17;:19::i;:::-;21393:24;:68::i;:::-;21388:180;;21481:43;21498:4;21504:19;:17;:19::i;:::-;21481:16;:43::i;:::-;21476:92;;21533:35;;;;;;;;;;;;;;21476:92;21388:180;21599:1;21585:16;;:2;:16;;::::0;21581:52:::1;;21610:23;;;;;;;;;;;;;;21581:52;21646:43;21668:4;21674:2;21678:7;21687:1;21646:21;:43::i;:::-;21782:15;21779:160;;;21922:1;21901:19;21894:30;21779:160;22319:18;:24;22338:4;22319:24;;;;;;;;;;;;;;;;22317:26;;;;;;;;;;;;22388:18;:22;22407:2;22388:22;;;;;;;;;;;;;;;;22386:24;;;;;;;;;;;22710:146;22747:2;22796:45;22811:4;22817:2;22821:19;22796:14;:45::i;:::-;2526:8;22768:73;22710:18;:146::i;:::-;22681:17;:26;22699:7;22681:26;;;;;;;;;;;:175;;;;23027:1;2526:8;22976:19;:47;:52:::0;22972:627:::1;;23049:19;23081:1;23071:7;:11;23049:33;;23238:1;23204:17;:30;23222:11;23204:30;;;;;;;;;;;;:35:::0;23200:384:::1;;23342:13;;23327:11;:28;23323:242;;23522:19;23489:17;:30;23507:11;23489:30;;;;;;;;;;;:52;;;;23323:242;23200:384;23030:569;22972:627;23646:7;23642:2;23627:27;;23636:4;23627:27;;;;;;;;;;;;23665:42;23686:4;23692:2;23696:7;23705:1;23665:20;:42::i;:::-;21021:2694;;;1761:7:10::0;;1700:82;310:42;1839:40;;;1888:4;1895:10;1839:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:156;;;;;310:42;1934:40;;;1983:4;1990;1934:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1839:156;1795:303;;2072:10;2053:30;;;;;;;;;;;:::i;:::-;;;;;;;;1795:303;1425:683;21032:27:2::1;21062;21081:7;21062:18;:27::i;:::-;21032:57;;21147:4;21106:45;;21122:19;21106:45;;;21102:86;;21160:28;;;;;;;;;;;;;;21102:86;21202:27;21231:23:::0;21258:35:::1;21285:7;21258:26;:35::i;:::-;21201:92;;;;21393:68;21418:15;21435:4;21441:19;:17;:19::i;:::-;21393:24;:68::i;:::-;21388:180;;21481:43;21498:4;21504:19;:17;:19::i;:::-;21481:16;:43::i;:::-;21476:92;;21533:35;;;;;;;;;;;;;;21476:92;21388:180;21599:1;21585:16;;:2;:16;;::::0;21581:52:::1;;21610:23;;;;;;;;;;;;;;21581:52;21646:43;21668:4;21674:2;21678:7;21687:1;21646:21;:43::i;:::-;21782:15;21779:160;;;21922:1;21901:19;21894:30;21779:160;22319:18;:24;22338:4;22319:24;;;;;;;;;;;;;;;;22317:26;;;;;;;;;;;;22388:18;:22;22407:2;22388:22;;;;;;;;;;;;;;;;22386:24;;;;;;;;;;;22710:146;22747:2;22796:45;22811:4;22817:2;22821:19;22796:14;:45::i;:::-;2526:8;22768:73;22710:18;:146::i;:::-;22681:17;:26;22699:7;22681:26;;;;;;;;;;;:175;;;;23027:1;2526:8;22976:19;:47;:52:::0;22972:627:::1;;23049:19;23081:1;23071:7;:11;23049:33;;23238:1;23204:17;:30;23222:11;23204:30;;;;;;;;;;;;:35:::0;23200:384:::1;;23342:13;;23327:11;:28;23323:242;;23522:19;23489:17;:30;23507:11;23489:30;;;;;;;;;;;:52;;;;23323:242;23200:384;23030:569;22972:627;23646:7;23642:2;23627:27;;23636:4;23627:27;;;;;;;;;;;;23665:42;23686:4;23692:2;23696:7;23705:1;23665:20;:42::i;:::-;21021:2694;;;20865:2850:::0;;;;;:::o;5445:106:14:-;1122:13:11;:11;:13::i;:::-;5503:7:14::1;:5;:7::i;:::-;5495:25;;:48;5521:21;5495:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;5445:106::o:0;471:36::-;;;;;;;;;;;;;:::o;23811:218:2:-;23966:4;1475:1:10;310:42;1429:43;;;:47;1425:683;;;1712:10;1704:18;;:4;:18;;;1700:82;;23982:39:2::1;23999:4;24005:2;24009:7;23982:39;;;;;;;;;;;::::0;:16:::1;:39::i;:::-;1761:7:10::0;;1700:82;310:42;1839:40;;;1888:4;1895:10;1839:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:156;;;;;310:42;1934:40;;;1983:4;1990;1934:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1839:156;1795:303;;2072:10;2053:30;;;;;;;;;;;:::i;:::-;;;;;;;;1795:303;1425:683;23982:39:2::1;23999:4;24005:2;24009:7;23982:39;;;;;;;;;;;::::0;:16:::1;:39::i;:::-;23811:218:::0;;;;;:::o;4865:294:14:-;4924:13;;;;;;;;;;;4916:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;4991:39;5010:10;5022:7;4991:18;:39::i;:::-;4969:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;5096:14;5102:7;5096:5;:14::i;:::-;5141:10;5121:8;:17;5130:7;5121:17;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;4865:294;:::o;3431:237::-;1122:13:11;:11;:13::i;:::-;419:5:14::1;3527:8;:15;3511:13;:11;:13::i;:::-;:31;;;;:::i;:::-;:44;;3503:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;3584:6;3580:80;3600:8;:15;3596:1;:19;3580:80;;;3635:25;3645:8;3654:1;3645:11;;;;;;;;:::i;:::-;;;;;;;;3658:1;3635:9;:25::i;:::-;3617:3;;;;;:::i;:::-;;;;3580:80;;;;3431:237:::0;:::o;4543:94::-;1122:13:11;:11;:13::i;:::-;4623:6:14::1;4607:13;;:22;;;;;;;;;;;;;;;;;;4543:94:::0;:::o;5353:85::-;1122:13:11;:11;:13::i;:::-;5428:2:14::1;5414:11;:16;;;;5353:85:::0;:::o;259:36::-;;;;:::o;11769:152:2:-;11841:7;11884:27;11903:7;11884:18;:27::i;:::-;11861:52;;11769:152;;;:::o;1962:594:14:-;2081:4;2064:21;;:13;;;;;;;;;;;:21;;;2056:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;2133:84;2152:11;;2133:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2164:12;;2204:10;2187:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;2177:39;;;;;;2133:18;:84::i;:::-;2125:121;;;;;;;;;;;;:::i;:::-;;;;;;;;;2292:6;2278:11;;:20;;;;:::i;:::-;2265:9;:33;;2257:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2354:10;;2344:6;:20;;2336:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;419:5;2458:6;2442:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:34;;2434:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;2505:29;2515:10;2527:6;2505:9;:29::i;:::-;1962:594;;;:::o;665:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7311:233:2:-;7383:7;7424:1;7407:19;;:5;:19;;;7403:60;;7435:28;;;;;;;;;;;;;;7403:60;1470:13;7481:18;:25;7500:5;7481:25;;;;;;;;;;;;;;;;:55;7474:62;;7311:233;;;:::o;1884:103:11:-;1122:13;:11;:13::i;:::-;1949:30:::1;1976:1;1949:18;:30::i;:::-;1884:103::o:0;350:36:14:-;;;;:::o;514:33::-;;;;;;;;;;;;;:::o;1236:87:11:-;1282:7;1309:6;;;;;;;;;;;1302:13;;1236:87;:::o;10552:104:2:-;10608:13;10641:7;10634:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10552:104;:::o;4132:92:14:-;1122:13:11;:11;:13::i;:::-;4212:4:14::1;4202:7;:14;;;;;;:::i;:::-;;4132:92:::0;:::o;17425:234:2:-;17572:8;17520:18;:39;17539:19;:17;:19::i;:::-;17520:39;;;;;;;;;;;;;;;:49;17560:8;17520:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;17632:8;17596:55;;17611:19;:17;:19::i;:::-;17596:55;;;17642:8;17596:55;;;;;;:::i;:::-;;;;;;;;17425:234;;:::o;302:40:14:-;;;;:::o;4645:105::-;1122:13:11;:11;:13::i;:::-;4735:10:14::1;4717:15;:28;;;;4645:105:::0;:::o;24627:432:2:-;24811:4;1475:1:10;310:42;1429:43;;;:47;1425:683;;;1712:10;1704:18;;:4;:18;;;1700:82;;24827:31:2::1;24840:4;24846:2;24850:7;24827:12;:31::i;:::-;24891:1;24873:2;:14;;;:19;24869:183;;24912:56;24943:4;24949:2;24953:7;24962:5;24912:30;:56::i;:::-;24907:145;;24996:40;;;;;;;;;;;;;;24907:145;24869:183;1761:7:10::0;;1700:82;310:42;1839:40;;;1888:4;1895:10;1839:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:156;;;;;310:42;1934:40;;;1983:4;1990;1934:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1839:156;1795:303;;2072:10;2053:30;;;;;;;;;;;:::i;:::-;;;;;;;;1795:303;1425:683;24827:31:2::1;24840:4;24846:2;24850:7;24827:12;:31::i;:::-;24891:1;24873:2;:14;;;:19;24869:183;;24912:56;24943:4;24949:2;24953:7;24962:5;24912:30;:56::i;:::-;24907:145;;24996:40;;;;;;;;;;;;;;24907:145;24869:183;24627:432:::0;;;;;;:::o;629:27:14:-;;;;:::o;2562:316::-;2665:4;2685:90;2704:11;;2685:90;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2716:15;;2759:13;2742:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;2732:42;;;;;;2685:18;:90::i;:::-;2682:181;;;2808:4;2801:11;;;;2682:181;2856:5;2849:12;;2562:316;;;;;;:::o;5165:85::-;1122:13:11;:11;:13::i;:::-;5240:2:14::1;5226:11;:16;;;;5165:85:::0;:::o;882:460::-;966:4;949:21;;:13;;;;;;;;;;;:21;;;941:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;1017:1;1008:6;:10;1000:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;419:5;1081:6;1065:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;1057:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;1160:6;1146:11;;:20;;;;:::i;:::-;1133:9;:33;;1125:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1222:10;;1212:6;:20;;1204:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;1306:29;1316:10;1328:6;1306:9;:29::i;:::-;882:460;:::o;3200:223::-;1122:13:11;:11;:13::i;:::-;3278:1:14::1;3269:6;:10;3261:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;419:5;3342:6;3326:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;3318:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3386:29;3396:10;3408:6;3386:9;:29::i;:::-;3200:223:::0;:::o;4230:102::-;1122:13:11;:11;:13::i;:::-;4318:6:14::1;4299:16;;:25;;;;;;;;;;;;;;;;;;4230:102:::0;:::o;3826:298::-;3899:13;3933:16;3941:7;3933;:16::i;:::-;3925:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;4045:1;4027:7;4021:21;;;;;:::i;:::-;;;:25;:95;;;;;;;;;;;;;;;;;4073:7;4082:18;:7;:16;:18::i;:::-;4056:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4021:95;4014:102;;3826:298;;;:::o;5256:91::-;1122:13:11;:11;:13::i;:::-;5337:2:14::1;5320:14;:19;;;;5256:91:::0;:::o;4338:96::-;1122:13:11;:11;:13::i;:::-;4420:6:14::1;4404:13;;:22;;;;;;;;;;;;;;;;;;4338:96:::0;:::o;751:27::-;;;;:::o;4440:96::-;1122:13:11;:11;:13::i;:::-;4522:6:14::1;4506:13;;:22;;;;;;;;;;;;;;;;;;4440:96:::0;:::o;592:30::-;;;;:::o;4756:99::-;1122:13:11;:11;:13::i;:::-;4840:10:14::1;4825:12;:25;;;;4756:99:::0;:::o;431:33::-;;;;;;;;;;;;;:::o;17816:164:2:-;17913:4;17937:18;:25;17956:5;17937:25;;;;;;;;;;;;;;;:35;17963:8;17937:35;;;;;;;;;;;;;;;;;;;;;;;;;17930:42;;17816:164;;;;:::o;2142:201:11:-;1122:13;:11;:13::i;:::-;2251:1:::1;2231:22;;:8;:22;;::::0;2223:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2307:28;2326:8;2307:18;:28::i;:::-;2142:201:::0;:::o;1094:190:6:-;1219:4;1272;1243:25;1256:5;1263:4;1243:12;:25::i;:::-;:33;1236:40;;1094:190;;;;;:::o;18238:282:2:-;18303:4;18359:7;18340:15;:13;:15::i;:::-;:26;;:66;;;;;18393:13;;18383:7;:23;18340:66;:153;;;;;18492:1;2246:8;18444:17;:26;18462:7;18444:26;;;;;;;;;;;;:44;:49;18340:153;18320:173;;18238:282;;;:::o;40980:105::-;41040:7;41067:10;41060:17;;40980:105;:::o;5643:92::-;5699:7;5726:1;5719:8;;5643:92;:::o;34812:112::-;34889:27;34899:2;34903:8;34889:27;;;;;;;;;;;;:9;:27::i;:::-;34812:112;;:::o;12924:1275::-;12991:7;13011:12;13026:7;13011:22;;13094:4;13075:15;:13;:15::i;:::-;:23;13071:1061;;13128:13;;13121:4;:20;13117:1015;;;13166:14;13183:17;:23;13201:4;13183:23;;;;;;;;;;;;13166:40;;13300:1;2246:8;13272:6;:24;:29;13268:845;;13937:113;13954:1;13944:6;:11;13937:113;;13997:17;:25;14015:6;;;;;;;13997:25;;;;;;;;;;;;13988:34;;13937:113;;;14083:6;14076:13;;;;;;13268:845;13143:989;13117:1015;13071:1061;14160:31;;;;;;;;;;;;;;12924:1275;;;;:::o;19401:485::-;19503:27;19532:23;19573:38;19614:15;:24;19630:7;19614:24;;;;;;;;;;;19573:65;;19791:18;19768:41;;19848:19;19842:26;19823:45;;19753:126;19401:485;;;:::o;18629:659::-;18778:11;18943:16;18936:5;18932:28;18923:37;;19103:16;19092:9;19088:32;19075:45;;19253:15;19242:9;19239:30;19231:5;19220:9;19217:20;19214:56;19204:66;;18629:659;;;;;:::o;25721:159::-;;;;;:::o;40289:311::-;40424:7;40444:16;2650:3;40470:19;:41;;40444:68;;2650:3;40538:31;40549:4;40555:2;40559:9;40538:10;:31::i;:::-;40530:40;;:62;;40523:69;;;40289:311;;;;;:::o;14747:450::-;14827:14;14995:16;14988:5;14984:28;14975:37;;15172:5;15158:11;15133:23;15129:41;15126:52;15119:5;15116:63;15106:73;;14747:450;;;;:::o;26545:158::-;;;;;:::o;1401:132:11:-;1476:12;:10;:12::i;:::-;1465:23;;:7;:5;:7::i;:::-;:23;;;1457:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1401:132::o;20510:349:2:-;20603:4;20628:16;20636:7;20628;:16::i;:::-;20620:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;20704:13;20720:24;20736:7;20720:15;:24::i;:::-;20704:40;;20774:5;20763:16;;:7;:16;;;:51;;;;20807:7;20783:31;;:20;20795:7;20783:11;:20::i;:::-;:31;;;20763:51;:87;;;;20818:32;20835:5;20842:7;20818:16;:32::i;:::-;20763:87;20755:96;;;20510:349;;;;:::o;35191:89::-;35251:21;35257:7;35266:5;35251;:21::i;:::-;35191:89;:::o;2503:191:11:-;2577:16;2596:6;;;;;;;;;;;2577:25;;2622:8;2613:6;;:17;;;;;;;;;;;;;;;;;;2677:8;2646:40;;2667:8;2646:40;;;;;;;;;;;;2566:128;2503:191;:::o;27143:716:2:-;27306:4;27352:2;27327:45;;;27373:19;:17;:19::i;:::-;27394:4;27400:7;27409:5;27327:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;27323:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27627:1;27610:6;:13;:18;27606:235;;27656:40;;;;;;;;;;;;;;27606:235;27799:6;27793:13;27784:6;27780:2;27776:15;27769:38;27323:529;27496:54;;;27486:64;;;:6;:64;;;;27479:71;;;27143:716;;;;;;:::o;427::13:-;483:13;534:14;571:1;551:17;562:5;551:10;:17::i;:::-;:21;534:38;;587:20;621:6;610:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;587:41;;643:11;772:6;768:2;764:15;756:6;752:28;745:35;;809:288;816:4;809:288;;;841:5;;;;;;;;983:8;978:2;971:5;967:14;962:30;957:3;949:44;1039:2;1030:11;;;;;;:::i;:::-;;;;;1073:1;1064:5;:10;809:288;1060:21;809:288;1118:6;1111:13;;;;;427:716;;;:::o;1645:675:6:-;1728:7;1748:20;1771:4;1748:27;;1791:9;1786:497;1810:5;:12;1806:1;:16;1786:497;;;1844:20;1867:5;1873:1;1867:8;;;;;;;;:::i;:::-;;;;;;;;1844:31;;1910:12;1894;:28;1890:382;;2037:42;2052:12;2066;2037:14;:42::i;:::-;2022:57;;1890:382;;;2214:42;2229:12;2243;2214:14;:42::i;:::-;2199:57;;1890:382;1829:454;1824:3;;;;;:::i;:::-;;;;1786:497;;;;2300:12;2293:19;;;1645:675;;;;:::o;34039:689:2:-;34170:19;34176:2;34180:8;34170:5;:19::i;:::-;34249:1;34231:2;:14;;;:19;34227:483;;34271:11;34285:13;;34271:27;;34317:13;34339:8;34333:3;:14;34317:30;;34366:233;34397:62;34436:1;34440:2;34444:7;;;;;;34453:5;34397:30;:62::i;:::-;34392:167;;34495:40;;;;;;;;;;;;;;34392:167;34594:3;34586:5;:11;34366:233;;34681:3;34664:13;;:20;34660:34;;34686:8;;;34660:34;34252:458;;34227:483;34039:689;;;:::o;39990:147::-;40127:6;39990:147;;;;;:::o;656:98:0:-;709:7;736:10;729:17;;656:98;:::o;35509:3081:2:-;35589:27;35619;35638:7;35619:18;:27::i;:::-;35589:57;;35659:12;35690:19;35659:52;;35725:27;35754:23;35781:35;35808:7;35781:26;:35::i;:::-;35724:92;;;;35833:13;35829:316;;;35954:68;35979:15;35996:4;36002:19;:17;:19::i;:::-;35954:24;:68::i;:::-;35949:184;;36046:43;36063:4;36069:19;:17;:19::i;:::-;36046:16;:43::i;:::-;36041:92;;36098:35;;;;;;;;;;;;;;36041:92;35949:184;35829:316;36157:51;36179:4;36193:1;36197:7;36206:1;36157:21;:51::i;:::-;36301:15;36298:160;;;36441:1;36420:19;36413:30;36298:160;37119:1;1735:3;37089:1;:26;;37088:32;37060:18;:24;37079:4;37060:24;;;;;;;;;;;;;;;;:60;;;;;;;;;;;37387:176;37424:4;37495:53;37510:4;37524:1;37528:19;37495:14;:53::i;:::-;2526:8;2246;37448:43;37447:101;37387:18;:176::i;:::-;37358:17;:26;37376:7;37358:26;;;;;;;;;;;:205;;;;37734:1;2526:8;37683:19;:47;:52;37679:627;;37756:19;37788:1;37778:7;:11;37756:33;;37945:1;37911:17;:30;37929:11;37911:30;;;;;;;;;;;;:35;37907:384;;38049:13;;38034:11;:28;38030:242;;38229:19;38196:17;:30;38214:11;38196:30;;;;;;;;;;;:52;;;;38030:242;37907:384;37737:569;37679:627;38361:7;38357:1;38334:35;;38343:4;38334:35;;;;;;;;;;;;38380:50;38401:4;38415:1;38419:7;38428:1;38380:20;:50::i;:::-;38557:12;;:14;;;;;;;;;;;;;35578:3012;;;;35509:3081;;:::o;10146:922:7:-;10199:7;10219:14;10236:1;10219:18;;10286:6;10277:5;:15;10273:102;;10322:6;10313:15;;;;;;:::i;:::-;;;;;10357:2;10347:12;;;;10273:102;10402:6;10393:5;:15;10389:102;;10438:6;10429:15;;;;;;:::i;:::-;;;;;10473:2;10463:12;;;;10389:102;10518:6;10509:5;:15;10505:102;;10554:6;10545:15;;;;;;:::i;:::-;;;;;10589:2;10579:12;;;;10505:102;10634:5;10625;:14;10621:99;;10669:5;10660:14;;;;;;:::i;:::-;;;;;10703:1;10693:11;;;;10621:99;10747:5;10738;:14;10734:99;;10782:5;10773:14;;;;;;:::i;:::-;;;;;10816:1;10806:11;;;;10734:99;10860:5;10851;:14;10847:99;;10895:5;10886:14;;;;;;:::i;:::-;;;;;10929:1;10919:11;;;;10847:99;10973:5;10964;:14;10960:66;;11009:1;10999:11;;;;10960:66;11054:6;11047:13;;;10146:922;;;:::o;2328:224:6:-;2396:13;2459:1;2453:4;2446:15;2488:1;2482:4;2475:15;2529:4;2523;2513:21;2504:30;;2328:224;;;;:::o;28321:2966:2:-;28394:20;28417:13;;28394:36;;28457:1;28445:8;:13;28441:44;;28467:18;;;;;;;;;;;;;;28441:44;28498:61;28528:1;28532:2;28536:12;28550:8;28498:21;:61::i;:::-;29042:1;1608:2;29012:1;:26;;29011:32;28999:8;:45;28973:18;:22;28992:2;28973:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;29321:139;29358:2;29412:33;29435:1;29439:2;29443:1;29412:14;:33::i;:::-;29379:30;29400:8;29379:20;:30::i;:::-;:66;29321:18;:139::i;:::-;29287:17;:31;29305:12;29287:31;;;;;;;;;;;:173;;;;29477:16;29508:11;29537:8;29522:12;:23;29508:37;;30058:16;30054:2;30050:25;30038:37;;30430:12;30390:8;30349:1;30287:25;30228:1;30167;30140:335;30801:1;30787:12;30783:20;30741:346;30842:3;30833:7;30830:16;30741:346;;31060:7;31050:8;31047:1;31020:25;31017:1;31014;31009:59;30895:1;30886:7;30882:15;30871:26;;30741:346;;;30745:77;31132:1;31120:8;:13;31116:45;;31142:19;;;;;;;;;;;;;;31116:45;31194:3;31178:13;:19;;;;28747:2462;;31219:60;31248:1;31252:2;31256:12;31270:8;31219:20;:60::i;:::-;28383:2904;28321:2966;;:::o;15299:324::-;15369:14;15602:1;15592:8;15589:15;15563:24;15559:46;15549:56;;15299:324;;;:::o;7:75:15:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:329::-;749:6;798:2;786:9;777:7;773:23;769:32;766:119;;;804:79;;:::i;:::-;766:119;924:1;949:53;994:7;985:6;974:9;970:22;949:53;:::i;:::-;939:63;;895:117;690:329;;;;:::o;1025:126::-;1062:7;1102:42;1095:5;1091:54;1080:65;;1025:126;;;:::o;1157:96::-;1194:7;1223:24;1241:5;1223:24;:::i;:::-;1212:35;;1157:96;;;:::o;1259:118::-;1346:24;1364:5;1346:24;:::i;:::-;1341:3;1334:37;1259:118;;:::o;1383:222::-;1476:4;1514:2;1503:9;1499:18;1491:26;;1527:71;1595:1;1584:9;1580:17;1571:6;1527:71;:::i;:::-;1383:222;;;;:::o;1611:149::-;1647:7;1687:66;1680:5;1676:78;1665:89;;1611:149;;;:::o;1766:120::-;1838:23;1855:5;1838:23;:::i;:::-;1831:5;1828:34;1818:62;;1876:1;1873;1866:12;1818:62;1766:120;:::o;1892:137::-;1937:5;1975:6;1962:20;1953:29;;1991:32;2017:5;1991:32;:::i;:::-;1892:137;;;;:::o;2035:327::-;2093:6;2142:2;2130:9;2121:7;2117:23;2113:32;2110:119;;;2148:79;;:::i;:::-;2110:119;2268:1;2293:52;2337:7;2328:6;2317:9;2313:22;2293:52;:::i;:::-;2283:62;;2239:116;2035:327;;;;:::o;2368:90::-;2402:7;2445:5;2438:13;2431:21;2420:32;;2368:90;;;:::o;2464:109::-;2545:21;2560:5;2545:21;:::i;:::-;2540:3;2533:34;2464:109;;:::o;2579:210::-;2666:4;2704:2;2693:9;2689:18;2681:26;;2717:65;2779:1;2768:9;2764:17;2755:6;2717:65;:::i;:::-;2579:210;;;;:::o;2795:122::-;2868:24;2886:5;2868:24;:::i;:::-;2861:5;2858:35;2848:63;;2907:1;2904;2897:12;2848:63;2795:122;:::o;2923:139::-;2969:5;3007:6;2994:20;2985:29;;3023:33;3050:5;3023:33;:::i;:::-;2923:139;;;;:::o;3068:117::-;3177:1;3174;3167:12;3191:117;3300:1;3297;3290:12;3314:117;3423:1;3420;3413:12;3454:568;3527:8;3537:6;3587:3;3580:4;3572:6;3568:17;3564:27;3554:122;;3595:79;;:::i;:::-;3554:122;3708:6;3695:20;3685:30;;3738:18;3730:6;3727:30;3724:117;;;3760:79;;:::i;:::-;3724:117;3874:4;3866:6;3862:17;3850:29;;3928:3;3920:4;3912:6;3908:17;3898:8;3894:32;3891:41;3888:128;;;3935:79;;:::i;:::-;3888:128;3454:568;;;;;:::o;4028:704::-;4123:6;4131;4139;4188:2;4176:9;4167:7;4163:23;4159:32;4156:119;;;4194:79;;:::i;:::-;4156:119;4314:1;4339:53;4384:7;4375:6;4364:9;4360:22;4339:53;:::i;:::-;4329:63;;4285:117;4469:2;4458:9;4454:18;4441:32;4500:18;4492:6;4489:30;4486:117;;;4522:79;;:::i;:::-;4486:117;4635:80;4707:7;4698:6;4687:9;4683:22;4635:80;:::i;:::-;4617:98;;;;4412:313;4028:704;;;;;:::o;4738:99::-;4790:6;4824:5;4818:12;4808:22;;4738:99;;;:::o;4843:169::-;4927:11;4961:6;4956:3;4949:19;5001:4;4996:3;4992:14;4977:29;;4843:169;;;;:::o;5018:246::-;5099:1;5109:113;5123:6;5120:1;5117:13;5109:113;;;5208:1;5203:3;5199:11;5193:18;5189:1;5184:3;5180:11;5173:39;5145:2;5142:1;5138:10;5133:15;;5109:113;;;5256:1;5247:6;5242:3;5238:16;5231:27;5080:184;5018:246;;;:::o;5270:102::-;5311:6;5362:2;5358:7;5353:2;5346:5;5342:14;5338:28;5328:38;;5270:102;;;:::o;5378:377::-;5466:3;5494:39;5527:5;5494:39;:::i;:::-;5549:71;5613:6;5608:3;5549:71;:::i;:::-;5542:78;;5629:65;5687:6;5682:3;5675:4;5668:5;5664:16;5629:65;:::i;:::-;5719:29;5741:6;5719:29;:::i;:::-;5714:3;5710:39;5703:46;;5470:285;5378:377;;;;:::o;5761:313::-;5874:4;5912:2;5901:9;5897:18;5889:26;;5961:9;5955:4;5951:20;5947:1;5936:9;5932:17;5925:47;5989:78;6062:4;6053:6;5989:78;:::i;:::-;5981:86;;5761:313;;;;:::o;6080:474::-;6148:6;6156;6205:2;6193:9;6184:7;6180:23;6176:32;6173:119;;;6211:79;;:::i;:::-;6173:119;6331:1;6356:53;6401:7;6392:6;6381:9;6377:22;6356:53;:::i;:::-;6346:63;;6302:117;6458:2;6484:53;6529:7;6520:6;6509:9;6505:22;6484:53;:::i;:::-;6474:63;;6429:118;6080:474;;;;;:::o;6560:118::-;6647:24;6665:5;6647:24;:::i;:::-;6642:3;6635:37;6560:118;;:::o;6684:222::-;6777:4;6815:2;6804:9;6800:18;6792:26;;6828:71;6896:1;6885:9;6881:17;6872:6;6828:71;:::i;:::-;6684:222;;;;:::o;6912:704::-;7007:6;7015;7023;7072:2;7060:9;7051:7;7047:23;7043:32;7040:119;;;7078:79;;:::i;:::-;7040:119;7198:1;7223:53;7268:7;7259:6;7248:9;7244:22;7223:53;:::i;:::-;7213:63;;7169:117;7353:2;7342:9;7338:18;7325:32;7384:18;7376:6;7373:30;7370:117;;;7406:79;;:::i;:::-;7370:117;7519:80;7591:7;7582:6;7571:9;7567:22;7519:80;:::i;:::-;7501:98;;;;7296:313;6912:704;;;;;:::o;7622:619::-;7699:6;7707;7715;7764:2;7752:9;7743:7;7739:23;7735:32;7732:119;;;7770:79;;:::i;:::-;7732:119;7890:1;7915:53;7960:7;7951:6;7940:9;7936:22;7915:53;:::i;:::-;7905:63;;7861:117;8017:2;8043:53;8088:7;8079:6;8068:9;8064:22;8043:53;:::i;:::-;8033:63;;7988:118;8145:2;8171:53;8216:7;8207:6;8196:9;8192:22;8171:53;:::i;:::-;8161:63;;8116:118;7622:619;;;;;:::o;8247:180::-;8295:77;8292:1;8285:88;8392:4;8389:1;8382:15;8416:4;8413:1;8406:15;8433:281;8516:27;8538:4;8516:27;:::i;:::-;8508:6;8504:40;8646:6;8634:10;8631:22;8610:18;8598:10;8595:34;8592:62;8589:88;;;8657:18;;:::i;:::-;8589:88;8697:10;8693:2;8686:22;8476:238;8433:281;;:::o;8720:129::-;8754:6;8781:20;;:::i;:::-;8771:30;;8810:33;8838:4;8830:6;8810:33;:::i;:::-;8720:129;;;:::o;8855:311::-;8932:4;9022:18;9014:6;9011:30;9008:56;;;9044:18;;:::i;:::-;9008:56;9094:4;9086:6;9082:17;9074:25;;9154:4;9148;9144:15;9136:23;;8855:311;;;:::o;9189:710::-;9285:5;9310:81;9326:64;9383:6;9326:64;:::i;:::-;9310:81;:::i;:::-;9301:90;;9411:5;9440:6;9433:5;9426:21;9474:4;9467:5;9463:16;9456:23;;9527:4;9519:6;9515:17;9507:6;9503:30;9556:3;9548:6;9545:15;9542:122;;;9575:79;;:::i;:::-;9542:122;9690:6;9673:220;9707:6;9702:3;9699:15;9673:220;;;9782:3;9811:37;9844:3;9832:10;9811:37;:::i;:::-;9806:3;9799:50;9878:4;9873:3;9869:14;9862:21;;9749:144;9733:4;9728:3;9724:14;9717:21;;9673:220;;;9677:21;9291:608;;9189:710;;;;;:::o;9922:370::-;9993:5;10042:3;10035:4;10027:6;10023:17;10019:27;10009:122;;10050:79;;:::i;:::-;10009:122;10167:6;10154:20;10192:94;10282:3;10274:6;10267:4;10259:6;10255:17;10192:94;:::i;:::-;10183:103;;9999:293;9922:370;;;;:::o;10298:539::-;10382:6;10431:2;10419:9;10410:7;10406:23;10402:32;10399:119;;;10437:79;;:::i;:::-;10399:119;10585:1;10574:9;10570:17;10557:31;10615:18;10607:6;10604:30;10601:117;;;10637:79;;:::i;:::-;10601:117;10742:78;10812:7;10803:6;10792:9;10788:22;10742:78;:::i;:::-;10732:88;;10528:302;10298:539;;;;:::o;10843:116::-;10913:21;10928:5;10913:21;:::i;:::-;10906:5;10903:32;10893:60;;10949:1;10946;10939:12;10893:60;10843:116;:::o;10965:133::-;11008:5;11046:6;11033:20;11024:29;;11062:30;11086:5;11062:30;:::i;:::-;10965:133;;;;:::o;11104:323::-;11160:6;11209:2;11197:9;11188:7;11184:23;11180:32;11177:119;;;11215:79;;:::i;:::-;11177:119;11335:1;11360:50;11402:7;11393:6;11382:9;11378:22;11360:50;:::i;:::-;11350:60;;11306:114;11104:323;;;;:::o;11433:329::-;11492:6;11541:2;11529:9;11520:7;11516:23;11512:32;11509:119;;;11547:79;;:::i;:::-;11509:119;11667:1;11692:53;11737:7;11728:6;11717:9;11713:22;11692:53;:::i;:::-;11682:63;;11638:117;11433:329;;;;:::o;11768:117::-;11877:1;11874;11867:12;11891:308;11953:4;12043:18;12035:6;12032:30;12029:56;;;12065:18;;:::i;:::-;12029:56;12103:29;12125:6;12103:29;:::i;:::-;12095:37;;12187:4;12181;12177:15;12169:23;;11891:308;;;:::o;12205:146::-;12302:6;12297:3;12292;12279:30;12343:1;12334:6;12329:3;12325:16;12318:27;12205:146;;;:::o;12357:425::-;12435:5;12460:66;12476:49;12518:6;12476:49;:::i;:::-;12460:66;:::i;:::-;12451:75;;12549:6;12542:5;12535:21;12587:4;12580:5;12576:16;12625:3;12616:6;12611:3;12607:16;12604:25;12601:112;;;12632:79;;:::i;:::-;12601:112;12722:54;12769:6;12764:3;12759;12722:54;:::i;:::-;12441:341;12357:425;;;;;:::o;12802:340::-;12858:5;12907:3;12900:4;12892:6;12888:17;12884:27;12874:122;;12915:79;;:::i;:::-;12874:122;13032:6;13019:20;13057:79;13132:3;13124:6;13117:4;13109:6;13105:17;13057:79;:::i;:::-;13048:88;;12864:278;12802:340;;;;:::o;13148:509::-;13217:6;13266:2;13254:9;13245:7;13241:23;13237:32;13234:119;;;13272:79;;:::i;:::-;13234:119;13420:1;13409:9;13405:17;13392:31;13450:18;13442:6;13439:30;13436:117;;;13472:79;;:::i;:::-;13436:117;13577:63;13632:7;13623:6;13612:9;13608:22;13577:63;:::i;:::-;13567:73;;13363:287;13148:509;;;;:::o;13663:468::-;13728:6;13736;13785:2;13773:9;13764:7;13760:23;13756:32;13753:119;;;13791:79;;:::i;:::-;13753:119;13911:1;13936:53;13981:7;13972:6;13961:9;13957:22;13936:53;:::i;:::-;13926:63;;13882:117;14038:2;14064:50;14106:7;14097:6;14086:9;14082:22;14064:50;:::i;:::-;14054:60;;14009:115;13663:468;;;;;:::o;14137:77::-;14174:7;14203:5;14192:16;;14137:77;;;:::o;14220:122::-;14293:24;14311:5;14293:24;:::i;:::-;14286:5;14283:35;14273:63;;14332:1;14329;14322:12;14273:63;14220:122;:::o;14348:139::-;14394:5;14432:6;14419:20;14410:29;;14448:33;14475:5;14448:33;:::i;:::-;14348:139;;;;:::o;14493:329::-;14552:6;14601:2;14589:9;14580:7;14576:23;14572:32;14569:119;;;14607:79;;:::i;:::-;14569:119;14727:1;14752:53;14797:7;14788:6;14777:9;14773:22;14752:53;:::i;:::-;14742:63;;14698:117;14493:329;;;;:::o;14828:307::-;14889:4;14979:18;14971:6;14968:30;14965:56;;;15001:18;;:::i;:::-;14965:56;15039:29;15061:6;15039:29;:::i;:::-;15031:37;;15123:4;15117;15113:15;15105:23;;14828:307;;;:::o;15141:423::-;15218:5;15243:65;15259:48;15300:6;15259:48;:::i;:::-;15243:65;:::i;:::-;15234:74;;15331:6;15324:5;15317:21;15369:4;15362:5;15358:16;15407:3;15398:6;15393:3;15389:16;15386:25;15383:112;;;15414:79;;:::i;:::-;15383:112;15504:54;15551:6;15546:3;15541;15504:54;:::i;:::-;15224:340;15141:423;;;;;:::o;15583:338::-;15638:5;15687:3;15680:4;15672:6;15668:17;15664:27;15654:122;;15695:79;;:::i;:::-;15654:122;15812:6;15799:20;15837:78;15911:3;15903:6;15896:4;15888:6;15884:17;15837:78;:::i;:::-;15828:87;;15644:277;15583:338;;;;:::o;15927:943::-;16022:6;16030;16038;16046;16095:3;16083:9;16074:7;16070:23;16066:33;16063:120;;;16102:79;;:::i;:::-;16063:120;16222:1;16247:53;16292:7;16283:6;16272:9;16268:22;16247:53;:::i;:::-;16237:63;;16193:117;16349:2;16375:53;16420:7;16411:6;16400:9;16396:22;16375:53;:::i;:::-;16365:63;;16320:118;16477:2;16503:53;16548:7;16539:6;16528:9;16524:22;16503:53;:::i;:::-;16493:63;;16448:118;16633:2;16622:9;16618:18;16605:32;16664:18;16656:6;16653:30;16650:117;;;16686:79;;:::i;:::-;16650:117;16791:62;16845:7;16836:6;16825:9;16821:22;16791:62;:::i;:::-;16781:72;;16576:287;15927:943;;;;;;;:::o;16876:118::-;16963:24;16981:5;16963:24;:::i;:::-;16958:3;16951:37;16876:118;;:::o;17000:222::-;17093:4;17131:2;17120:9;17116:18;17108:26;;17144:71;17212:1;17201:9;17197:17;17188:6;17144:71;:::i;:::-;17000:222;;;;:::o;17228:474::-;17296:6;17304;17353:2;17341:9;17332:7;17328:23;17324:32;17321:119;;;17359:79;;:::i;:::-;17321:119;17479:1;17504:53;17549:7;17540:6;17529:9;17525:22;17504:53;:::i;:::-;17494:63;;17450:117;17606:2;17632:53;17677:7;17668:6;17657:9;17653:22;17632:53;:::i;:::-;17622:63;;17577:118;17228:474;;;;;:::o;17708:94::-;17741:8;17789:5;17785:2;17781:14;17760:35;;17708:94;;;:::o;17808:::-;17847:7;17876:20;17890:5;17876:20;:::i;:::-;17865:31;;17808:94;;;:::o;17908:100::-;17947:7;17976:26;17996:5;17976:26;:::i;:::-;17965:37;;17908:100;;;:::o;18014:157::-;18119:45;18139:24;18157:5;18139:24;:::i;:::-;18119:45;:::i;:::-;18114:3;18107:58;18014:157;;:::o;18177:256::-;18289:3;18304:75;18375:3;18366:6;18304:75;:::i;:::-;18404:2;18399:3;18395:12;18388:19;;18424:3;18417:10;;18177:256;;;;:::o;18439:180::-;18487:77;18484:1;18477:88;18584:4;18581:1;18574:15;18608:4;18605:1;18598:15;18625:320;18669:6;18706:1;18700:4;18696:12;18686:22;;18753:1;18747:4;18743:12;18774:18;18764:81;;18830:4;18822:6;18818:17;18808:27;;18764:81;18892:2;18884:6;18881:14;18861:18;18858:38;18855:84;;18911:18;;:::i;:::-;18855:84;18676:269;18625:320;;;:::o;18951:174::-;19091:26;19087:1;19079:6;19075:14;19068:50;18951:174;:::o;19131:366::-;19273:3;19294:67;19358:2;19353:3;19294:67;:::i;:::-;19287:74;;19370:93;19459:3;19370:93;:::i;:::-;19488:2;19483:3;19479:12;19472:19;;19131:366;;;:::o;19503:419::-;19669:4;19707:2;19696:9;19692:18;19684:26;;19756:9;19750:4;19746:20;19742:1;19731:9;19727:17;19720:47;19784:131;19910:4;19784:131;:::i;:::-;19776:139;;19503:419;;;:::o;19928:180::-;20068:32;20064:1;20056:6;20052:14;20045:56;19928:180;:::o;20114:366::-;20256:3;20277:67;20341:2;20336:3;20277:67;:::i;:::-;20270:74;;20353:93;20442:3;20353:93;:::i;:::-;20471:2;20466:3;20462:12;20455:19;;20114:366;;;:::o;20486:419::-;20652:4;20690:2;20679:9;20675:18;20667:26;;20739:9;20733:4;20729:20;20725:1;20714:9;20710:17;20703:47;20767:131;20893:4;20767:131;:::i;:::-;20759:139;;20486:419;;;:::o;20911:241::-;21051:34;21047:1;21039:6;21035:14;21028:58;21120:24;21115:2;21107:6;21103:15;21096:49;20911:241;:::o;21158:366::-;21300:3;21321:67;21385:2;21380:3;21321:67;:::i;:::-;21314:74;;21397:93;21486:3;21397:93;:::i;:::-;21515:2;21510:3;21506:12;21499:19;;21158:366;;;:::o;21530:419::-;21696:4;21734:2;21723:9;21719:18;21711:26;;21783:9;21777:4;21773:20;21769:1;21758:9;21754:17;21747:47;21811:131;21937:4;21811:131;:::i;:::-;21803:139;;21530:419;;;:::o;21955:180::-;22003:77;22000:1;21993:88;22100:4;22097:1;22090:15;22124:4;22121:1;22114:15;22141:191;22181:3;22200:20;22218:1;22200:20;:::i;:::-;22195:25;;22234:20;22252:1;22234:20;:::i;:::-;22229:25;;22277:1;22274;22270:9;22263:16;;22298:3;22295:1;22292:10;22289:36;;;22305:18;;:::i;:::-;22289:36;22141:191;;;;:::o;22338:159::-;22478:11;22474:1;22466:6;22462:14;22455:35;22338:159;:::o;22503:365::-;22645:3;22666:66;22730:1;22725:3;22666:66;:::i;:::-;22659:73;;22741:93;22830:3;22741:93;:::i;:::-;22859:2;22854:3;22850:12;22843:19;;22503:365;;;:::o;22874:419::-;23040:4;23078:2;23067:9;23063:18;23055:26;;23127:9;23121:4;23117:20;23113:1;23102:9;23098:17;23091:47;23155:131;23281:4;23155:131;:::i;:::-;23147:139;;22874:419;;;:::o;23299:410::-;23339:7;23362:20;23380:1;23362:20;:::i;:::-;23357:25;;23396:20;23414:1;23396:20;:::i;:::-;23391:25;;23451:1;23448;23444:9;23473:30;23491:11;23473:30;:::i;:::-;23462:41;;23652:1;23643:7;23639:15;23636:1;23633:22;23613:1;23606:9;23586:83;23563:139;;23682:18;;:::i;:::-;23563:139;23347:362;23299:410;;;;:::o;23715:172::-;23855:24;23851:1;23843:6;23839:14;23832:48;23715:172;:::o;23893:366::-;24035:3;24056:67;24120:2;24115:3;24056:67;:::i;:::-;24049:74;;24132:93;24221:3;24132:93;:::i;:::-;24250:2;24245:3;24241:12;24234:19;;23893:366;;;:::o;24265:419::-;24431:4;24469:2;24458:9;24454:18;24446:26;;24518:9;24512:4;24508:20;24504:1;24493:9;24489:17;24482:47;24546:131;24672:4;24546:131;:::i;:::-;24538:139;;24265:419;;;:::o;24690:332::-;24811:4;24849:2;24838:9;24834:18;24826:26;;24862:71;24930:1;24919:9;24915:17;24906:6;24862:71;:::i;:::-;24943:72;25011:2;25000:9;24996:18;24987:6;24943:72;:::i;:::-;24690:332;;;;;:::o;25028:137::-;25082:5;25113:6;25107:13;25098:22;;25129:30;25153:5;25129:30;:::i;:::-;25028:137;;;;:::o;25171:345::-;25238:6;25287:2;25275:9;25266:7;25262:23;25258:32;25255:119;;;25293:79;;:::i;:::-;25255:119;25413:1;25438:61;25491:7;25482:6;25471:9;25467:22;25438:61;:::i;:::-;25428:71;;25384:125;25171:345;;;;:::o;25522:166::-;25662:18;25658:1;25650:6;25646:14;25639:42;25522:166;:::o;25694:366::-;25836:3;25857:67;25921:2;25916:3;25857:67;:::i;:::-;25850:74;;25933:93;26022:3;25933:93;:::i;:::-;26051:2;26046:3;26042:12;26035:19;;25694:366;;;:::o;26066:419::-;26232:4;26270:2;26259:9;26255:18;26247:26;;26319:9;26313:4;26309:20;26305:1;26294:9;26290:17;26283:47;26347:131;26473:4;26347:131;:::i;:::-;26339:139;;26066:419;;;:::o;26491:177::-;26631:29;26627:1;26619:6;26615:14;26608:53;26491:177;:::o;26674:366::-;26816:3;26837:67;26901:2;26896:3;26837:67;:::i;:::-;26830:74;;26913:93;27002:3;26913:93;:::i;:::-;27031:2;27026:3;27022:12;27015:19;;26674:366;;;:::o;27046:419::-;27212:4;27250:2;27239:9;27235:18;27227:26;;27299:9;27293:4;27289:20;27285:1;27274:9;27270:17;27263:47;27327:131;27453:4;27327:131;:::i;:::-;27319:139;;27046:419;;;:::o;27471:180::-;27519:77;27516:1;27509:88;27616:4;27613:1;27606:15;27640:4;27637:1;27630:15;27657:233;27696:3;27719:24;27737:5;27719:24;:::i;:::-;27710:33;;27765:66;27758:5;27755:77;27752:103;;27835:18;;:::i;:::-;27752:103;27882:1;27875:5;27871:13;27864:20;;27657:233;;;:::o;27896:175::-;28036:27;28032:1;28024:6;28020:14;28013:51;27896:175;:::o;28077:366::-;28219:3;28240:67;28304:2;28299:3;28240:67;:::i;:::-;28233:74;;28316:93;28405:3;28316:93;:::i;:::-;28434:2;28429:3;28425:12;28418:19;;28077:366;;;:::o;28449:419::-;28615:4;28653:2;28642:9;28638:18;28630:26;;28702:9;28696:4;28692:20;28688:1;28677:9;28673:17;28666:47;28730:131;28856:4;28730:131;:::i;:::-;28722:139;;28449:419;;;:::o;28874:141::-;28923:4;28946:3;28938:11;;28969:3;28966:1;28959:14;29003:4;29000:1;28990:18;28982:26;;28874:141;;;:::o;29021:93::-;29058:6;29105:2;29100;29093:5;29089:14;29085:23;29075:33;;29021:93;;;:::o;29120:107::-;29164:8;29214:5;29208:4;29204:16;29183:37;;29120:107;;;;:::o;29233:393::-;29302:6;29352:1;29340:10;29336:18;29375:97;29405:66;29394:9;29375:97;:::i;:::-;29493:39;29523:8;29512:9;29493:39;:::i;:::-;29481:51;;29565:4;29561:9;29554:5;29550:21;29541:30;;29614:4;29604:8;29600:19;29593:5;29590:30;29580:40;;29309:317;;29233:393;;;;;:::o;29632:60::-;29660:3;29681:5;29674:12;;29632:60;;;:::o;29698:142::-;29748:9;29781:53;29799:34;29808:24;29826:5;29808:24;:::i;:::-;29799:34;:::i;:::-;29781:53;:::i;:::-;29768:66;;29698:142;;;:::o;29846:75::-;29889:3;29910:5;29903:12;;29846:75;;;:::o;29927:269::-;30037:39;30068:7;30037:39;:::i;:::-;30098:91;30147:41;30171:16;30147:41;:::i;:::-;30139:6;30132:4;30126:11;30098:91;:::i;:::-;30092:4;30085:105;30003:193;29927:269;;;:::o;30202:73::-;30247:3;30202:73;:::o;30281:189::-;30358:32;;:::i;:::-;30399:65;30457:6;30449;30443:4;30399:65;:::i;:::-;30334:136;30281:189;;:::o;30476:186::-;30536:120;30553:3;30546:5;30543:14;30536:120;;;30607:39;30644:1;30637:5;30607:39;:::i;:::-;30580:1;30573:5;30569:13;30560:22;;30536:120;;;30476:186;;:::o;30668:543::-;30769:2;30764:3;30761:11;30758:446;;;30803:38;30835:5;30803:38;:::i;:::-;30887:29;30905:10;30887:29;:::i;:::-;30877:8;30873:44;31070:2;31058:10;31055:18;31052:49;;;31091:8;31076:23;;31052:49;31114:80;31170:22;31188:3;31170:22;:::i;:::-;31160:8;31156:37;31143:11;31114:80;:::i;:::-;30773:431;;30758:446;30668:543;;;:::o;31217:117::-;31271:8;31321:5;31315:4;31311:16;31290:37;;31217:117;;;;:::o;31340:169::-;31384:6;31417:51;31465:1;31461:6;31453:5;31450:1;31446:13;31417:51;:::i;:::-;31413:56;31498:4;31492;31488:15;31478:25;;31391:118;31340:169;;;;:::o;31514:295::-;31590:4;31736:29;31761:3;31755:4;31736:29;:::i;:::-;31728:37;;31798:3;31795:1;31791:11;31785:4;31782:21;31774:29;;31514:295;;;;:::o;31814:1395::-;31931:37;31964:3;31931:37;:::i;:::-;32033:18;32025:6;32022:30;32019:56;;;32055:18;;:::i;:::-;32019:56;32099:38;32131:4;32125:11;32099:38;:::i;:::-;32184:67;32244:6;32236;32230:4;32184:67;:::i;:::-;32278:1;32302:4;32289:17;;32334:2;32326:6;32323:14;32351:1;32346:618;;;;33008:1;33025:6;33022:77;;;33074:9;33069:3;33065:19;33059:26;33050:35;;33022:77;33125:67;33185:6;33178:5;33125:67;:::i;:::-;33119:4;33112:81;32981:222;32316:887;;32346:618;32398:4;32394:9;32386:6;32382:22;32432:37;32464:4;32432:37;:::i;:::-;32491:1;32505:208;32519:7;32516:1;32513:14;32505:208;;;32598:9;32593:3;32589:19;32583:26;32575:6;32568:42;32649:1;32641:6;32637:14;32627:24;;32696:2;32685:9;32681:18;32668:31;;32542:4;32539:1;32535:12;32530:17;;32505:208;;;32741:6;32732:7;32729:19;32726:179;;;32799:9;32794:3;32790:19;32784:26;32842:48;32884:4;32876:6;32872:17;32861:9;32842:48;:::i;:::-;32834:6;32827:64;32749:156;32726:179;32951:1;32947;32939:6;32935:14;32931:22;32925:4;32918:36;32353:611;;;32316:887;;31906:1303;;;31814:1395;;:::o;33215:164::-;33355:16;33351:1;33343:6;33339:14;33332:40;33215:164;:::o;33385:366::-;33527:3;33548:67;33612:2;33607:3;33548:67;:::i;:::-;33541:74;;33624:93;33713:3;33624:93;:::i;:::-;33742:2;33737:3;33733:12;33726:19;;33385:366;;;:::o;33757:419::-;33923:4;33961:2;33950:9;33946:18;33938:26;;34010:9;34004:4;34000:20;33996:1;33985:9;33981:17;33974:47;34038:131;34164:4;34038:131;:::i;:::-;34030:139;;33757:419;;;:::o;34182:173::-;34322:25;34318:1;34310:6;34306:14;34299:49;34182:173;:::o;34361:366::-;34503:3;34524:67;34588:2;34583:3;34524:67;:::i;:::-;34517:74;;34600:93;34689:3;34600:93;:::i;:::-;34718:2;34713:3;34709:12;34702:19;;34361:366;;;:::o;34733:419::-;34899:4;34937:2;34926:9;34922:18;34914:26;;34986:9;34980:4;34976:20;34972:1;34961:9;34957:17;34950:47;35014:131;35140:4;35014:131;:::i;:::-;35006:139;;34733:419;;;:::o;35158:234::-;35298:34;35294:1;35286:6;35282:14;35275:58;35367:17;35362:2;35354:6;35350:15;35343:42;35158:234;:::o;35398:366::-;35540:3;35561:67;35625:2;35620:3;35561:67;:::i;:::-;35554:74;;35637:93;35726:3;35637:93;:::i;:::-;35755:2;35750:3;35746:12;35739:19;;35398:366;;;:::o;35770:419::-;35936:4;35974:2;35963:9;35959:18;35951:26;;36023:9;36017:4;36013:20;36009:1;35998:9;35994:17;35987:47;36051:131;36177:4;36051:131;:::i;:::-;36043:139;;35770:419;;;:::o;36195:148::-;36297:11;36334:3;36319:18;;36195:148;;;;:::o;36373:874::-;36476:3;36513:5;36507:12;36542:36;36568:9;36542:36;:::i;:::-;36594:89;36676:6;36671:3;36594:89;:::i;:::-;36587:96;;36714:1;36703:9;36699:17;36730:1;36725:166;;;;36905:1;36900:341;;;;36692:549;;36725:166;36809:4;36805:9;36794;36790:25;36785:3;36778:38;36871:6;36864:14;36857:22;36849:6;36845:35;36840:3;36836:45;36829:52;;36725:166;;36900:341;36967:38;36999:5;36967:38;:::i;:::-;37027:1;37041:154;37055:6;37052:1;37049:13;37041:154;;;37129:7;37123:14;37119:1;37114:3;37110:11;37103:35;37179:1;37170:7;37166:15;37155:26;;37077:4;37074:1;37070:12;37065:17;;37041:154;;;37224:6;37219:3;37215:16;37208:23;;36907:334;;36692:549;;36480:767;;36373:874;;;;:::o;37253:390::-;37359:3;37387:39;37420:5;37387:39;:::i;:::-;37442:89;37524:6;37519:3;37442:89;:::i;:::-;37435:96;;37540:65;37598:6;37593:3;37586:4;37579:5;37575:16;37540:65;:::i;:::-;37630:6;37625:3;37621:16;37614:23;;37363:280;37253:390;;;;:::o;37649:155::-;37789:7;37785:1;37777:6;37773:14;37766:31;37649:155;:::o;37810:400::-;37970:3;37991:84;38073:1;38068:3;37991:84;:::i;:::-;37984:91;;38084:93;38173:3;38084:93;:::i;:::-;38202:1;38197:3;38193:11;38186:18;;37810:400;;;:::o;38216:695::-;38494:3;38516:92;38604:3;38595:6;38516:92;:::i;:::-;38509:99;;38625:95;38716:3;38707:6;38625:95;:::i;:::-;38618:102;;38737:148;38881:3;38737:148;:::i;:::-;38730:155;;38902:3;38895:10;;38216:695;;;;;:::o;38917:225::-;39057:34;39053:1;39045:6;39041:14;39034:58;39126:8;39121:2;39113:6;39109:15;39102:33;38917:225;:::o;39148:366::-;39290:3;39311:67;39375:2;39370:3;39311:67;:::i;:::-;39304:74;;39387:93;39476:3;39387:93;:::i;:::-;39505:2;39500:3;39496:12;39489:19;;39148:366;;;:::o;39520:419::-;39686:4;39724:2;39713:9;39709:18;39701:26;;39773:9;39767:4;39763:20;39759:1;39748:9;39744:17;39737:47;39801:131;39927:4;39801:131;:::i;:::-;39793:139;;39520:419;;;:::o;39945:182::-;40085:34;40081:1;40073:6;40069:14;40062:58;39945:182;:::o;40133:366::-;40275:3;40296:67;40360:2;40355:3;40296:67;:::i;:::-;40289:74;;40372:93;40461:3;40372:93;:::i;:::-;40490:2;40485:3;40481:12;40474:19;;40133:366;;;:::o;40505:419::-;40671:4;40709:2;40698:9;40694:18;40686:26;;40758:9;40752:4;40748:20;40744:1;40733:9;40729:17;40722:47;40786:131;40912:4;40786:131;:::i;:::-;40778:139;;40505:419;;;:::o;40930:231::-;41070:34;41066:1;41058:6;41054:14;41047:58;41139:14;41134:2;41126:6;41122:15;41115:39;40930:231;:::o;41167:366::-;41309:3;41330:67;41394:2;41389:3;41330:67;:::i;:::-;41323:74;;41406:93;41495:3;41406:93;:::i;:::-;41524:2;41519:3;41515:12;41508:19;;41167:366;;;:::o;41539:419::-;41705:4;41743:2;41732:9;41728:18;41720:26;;41792:9;41786:4;41782:20;41778:1;41767:9;41763:17;41756:47;41820:131;41946:4;41820:131;:::i;:::-;41812:139;;41539:419;;;:::o;41964:98::-;42015:6;42049:5;42043:12;42033:22;;41964:98;;;:::o;42068:168::-;42151:11;42185:6;42180:3;42173:19;42225:4;42220:3;42216:14;42201:29;;42068:168;;;;:::o;42242:373::-;42328:3;42356:38;42388:5;42356:38;:::i;:::-;42410:70;42473:6;42468:3;42410:70;:::i;:::-;42403:77;;42489:65;42547:6;42542:3;42535:4;42528:5;42524:16;42489:65;:::i;:::-;42579:29;42601:6;42579:29;:::i;:::-;42574:3;42570:39;42563:46;;42332:283;42242:373;;;;:::o;42621:640::-;42816:4;42854:3;42843:9;42839:19;42831:27;;42868:71;42936:1;42925:9;42921:17;42912:6;42868:71;:::i;:::-;42949:72;43017:2;43006:9;43002:18;42993:6;42949:72;:::i;:::-;43031;43099:2;43088:9;43084:18;43075:6;43031:72;:::i;:::-;43150:9;43144:4;43140:20;43135:2;43124:9;43120:18;43113:48;43178:76;43249:4;43240:6;43178:76;:::i;:::-;43170:84;;42621:640;;;;;;;:::o;43267:141::-;43323:5;43354:6;43348:13;43339:22;;43370:32;43396:5;43370:32;:::i;:::-;43267:141;;;;:::o;43414:349::-;43483:6;43532:2;43520:9;43511:7;43507:23;43503:32;43500:119;;;43538:79;;:::i;:::-;43500:119;43658:1;43683:63;43738:7;43729:6;43718:9;43714:22;43683:63;:::i;:::-;43673:73;;43629:127;43414:349;;;;:::o;43769:180::-;43817:77;43814:1;43807:88;43914:4;43911:1;43904:15;43938:4;43935:1;43928:15

Swarm Source

ipfs://d3bc9ae6ba805c770f4e892e95d368810558cd51480f8c87a5a20506de25971d
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.