ETH Price: $3,437.95 (-1.20%)
Gas: 4 Gwei

Token

STARFIGHTER CLUB (SFC)
 

Overview

Max Total Supply

333 SFC

Holders

120

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
gemmabear.eth
Balance
1 SFC
0xdf8df10c7c4114de4eb5632e4d7107aea3abd9d0
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:
starfighter

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-12
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.14;

//  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _                         
// |   ____  _          ____                 |
// |  / ___|(_) _   _  |  _ \   ___ __   __  |
// | | |  _ | || | | | | | | | / _ \\ \ / /  |
// | | |_| || || |_| | | |_| ||  __/ \ V /   |
// |  \____||_| \__,_| |____/  \___|  \_/    |
// | _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ |    
                                  
interface IERC721A {

    // The caller must own the token or be an approved operator
    error ApprovalCallerNotOwnerNorApproved();

    //The token does not exist
    error ApprovalQueryForNonexistentToken();

    //The caller cannot approve to their own address
    error ApproveToCaller();

    //The caller cannot approve to the current owner
    error ApprovalToCurrentOwner();

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;}

    //Returns the total amount of tokens stored by the contract
    //Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens
    function totalSupply() external view returns (uint256);

    //Returns true if this contract implements the interface defined by `interfaceId`
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    //Emitted when `tokenId` token is transferred from `from` to `to`
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    //Emitted when `owner` enables `approved` to manage the `tokenId` token
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    //Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    //Returns the number of tokens in `owner` account
    function balanceOf(address owner) external view returns (uint256 balance);

    //Returns the owner of the `tokenId` token
    function ownerOf(uint256 tokenId) external view returns (address owner);

    //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
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;

    //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
    function safeTransferFrom(address from, address to, uint256 tokenId) external;

    //Transfers `tokenId` token 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}
    function transferFrom(address from, address to, uint256 tokenId) external;

    //Gives permission to `to` to transfer `tokenId` token to another account
    function approve(address to, uint256 tokenId) external;

    //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.
    function setApprovalForAll(address operator, bool _approved) external;

    //Returns the account approved for `tokenId` token.
    //Requirements: `tokenId` must exist
    function getApproved(uint256 tokenId) external view returns (address operator);

    //Returns if the `operator` is allowed to manage all of the assets of `owner`
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    //Returns the token collection name
    function name() external view returns (string memory);

    //Returns the token collection symbol
    function symbol() external view returns (string memory);

    //Returns the Uniform Resource Identifier (URI) for `tokenId` token
    function tokenURI(uint256 tokenId) external view returns (string memory);}

interface ERC721A__IERC721Receiver {
    function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4);}

contract ERC721A is IERC721A {
    // 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 tokenId of the next token 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`
    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 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

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

    //Returns the starting token ID
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;}

    //Returns the next token ID to be minted
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;}

    //Returns the total number of tokens in existence
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {return _currentIndex - _burnCounter - _startTokenId();}}

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

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

    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: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || interfaceId == 0x80ac58cd || interfaceId == 0x5b5e139f;}

    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;}

    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;}

    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY;}

    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_AUX);}

    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux}
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;}

    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 ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];}
                        return packed;}}}
        revert OwnerQueryForNonexistentToken();}

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

    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);}

    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);}}

    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));}

    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));}

    function name() public view virtual override returns (string memory) {
        return _name;}

    function symbol() public view virtual override returns (string memory) {
        return _symbol;}

    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))) : '';}

    //Base URI for computing {tokenURI}. 
    function _baseURI() internal view virtual returns (string memory) {
        return '';}

    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value}}

    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value}}

    function approve(address to, uint256 tokenId) public override {
        address owner = address(uint160(_packedOwnershipOf(tokenId)));
        if (to == owner) revert ApprovalToCurrentOwner();
        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();}
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);}

    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();
        return _tokenApprovals[tokenId];}

    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);}

    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];}

    function transferFrom(address from, address to, uint256 tokenId) public virtual override {
        _transfer(from, to, tokenId);}

    function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override {
        safeTransferFrom(from, to, tokenId, '');}

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override {
        _transfer(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();}}

    //Returns whether `tokenId` exists
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex && _packedOwnerships[tokenId] & BITMASK_BURNED == 0;}

    //Equivalent to `_safeMint(to, quantity, '')`
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');}

    //Safely mints `quantity` tokens and transfers them to `to`
    function _safeMint(address to, uint256 quantity, bytes memory _data) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        _beforeTokenTransfers(address(0), to, startTokenId, quantity);
        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);
            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;
            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();}} 
                while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();} 
                else {
                do {emit Transfer(address(0), to, updatedIndex++);} while (updatedIndex < end);}
            _currentIndex = updatedIndex;}
        _afterTokenTransfers(address(0), to, startTokenId, quantity);}

    //Mints `quantity` tokens and transfers them to `to`
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        _beforeTokenTransfers(address(0), to, startTokenId, quantity);
        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);
            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;
            do {emit Transfer(address(0), to, updatedIndex++);} while (updatedIndex < end);
            _currentIndex = updatedIndex;}
        _afterTokenTransfers(address(0), to, startTokenId, quantity);}

    //Transfers `tokenId` from `from` to `to`
    function _transfer(address from, address to, uint256 tokenId) private {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);
        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();
        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());
        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();
        _beforeTokenTransfers(from, to, tokenId, 1);
        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];
        // 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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;
            // 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);}

    //Equivalent to `_burn(tokenId, false)`
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);}

    //Destroys `tokenId`
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);
        address from = address(uint160(prevOwnershipPacked));
        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A());
            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();}
        _beforeTokenTransfers(from, address(0), tokenId, 1);
        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];
        // 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] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;
            // 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++;}}

    //Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract
    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))}}}}

    //Hook that is called before a set of serially-ordered token ids are about to be transferred
    function _beforeTokenTransfers(address from, address to, uint256 startTokenId, uint256 quantity) internal virtual {}

    //Hook that is called after a set of serially-ordered token ids have been transferred
    function _afterTokenTransfers(address from, address to, uint256 startTokenId, uint256 quantity) internal virtual {}

    //Returns the message sender (defaults to `msg.sender`)
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;}

    //Converts a `uint256` to its ASCII `string` decimal representation
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), 
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length, 
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for { 
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)} 
            temp { 
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)} { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))}
            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)}}}

abstract contract ReentrancyGuard {
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;
    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;}

    //Prevents a contract from calling itself, directly or indirectly.
    //Calling a `nonReentrant` function from another `nonReentrant`function is not supported. 
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
        _;
        _status = _NOT_ENTERED;}}

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;}

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;}}

abstract contract Ownable is Context {

    address private _owner;
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    constructor() {
        //dev Initializes the contract setting the deployer as the initial owner
        _transferOwnership(_msgSender());}

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

    modifier onlyOwner() {
        //Throws if called by any account other than the owner
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;}

    function renounceOwnership() public virtual onlyOwner {
        //Leaves the contract without owner
        _transferOwnership(address(0));}

    function transferOwnership(address newOwner) public virtual onlyOwner {
        //Transfers ownership of the contract to a new account (`newOwner`)
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);}

    function _transferOwnership(address newOwner) internal virtual {
        //Transfers ownership of the contract to a new account (`newOwner`)
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);}}

library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    function toString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0";}
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;}
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;}
        return string(buffer);}
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";}
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;}
        return toHexString(value, length);}
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;}
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);}
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);}}

contract starfighter is ERC721A, Ownable, ReentrancyGuard {

    using Strings for uint256;

    string public uriPrefix = "";
    string public uriSuffix = ".json";

    uint256 public costWhitelist = 0.05 ether;
    uint256 public costNormal = 0.06 ether;
    uint256 public NFTminted;

    bool public paused = true;
    bool public whitelistMintEnabled = false;
    bool public revealed = false;

    //mapping(address => bool) public whitelistClaimed;
    mapping (address => bool) public whitelisted;
    mapping(address => uint) public minted;

    string public tokenName = "STARFIGHTER CLUB";
    string public tokenSymbol = "SFC";
    uint256 public maxSupply = 333;
    uint256 public maxMintAmountPerTx = 12;
    string public hiddenMetadataUri = "ipfs://QmVUr53zcyrXr7VfBg7PLjmMcL17N5Xej8bKSBbRAro8tQ/hidden.json";
    
    constructor() ERC721A(tokenName, tokenSymbol) {
            maxSupply = maxSupply;
            setMaxMintAmountPerTx(maxMintAmountPerTx);
            setHiddenMetadataUri(hiddenMetadataUri);}

    modifier mintCompliance(uint256 _mintAmount) {
        require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
        require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
        _;}

    modifier mintPriceCompliance(uint256 _mintAmount) {
        if(whitelistMintEnabled == true && paused == true){
            require(msg.value >= costWhitelist * _mintAmount, 'Insufficient funds!');}
        if(paused == false){
            require(msg.value >= costNormal * _mintAmount, 'Insufficient funds!');}
        _;}

    function setCostWhitelist(uint256 _cost) public onlyOwner {
        //Ether cost
        costWhitelist = _cost;}

    function setCostNormal(uint256 _cost) public onlyOwner {
        //Ether cost
        costNormal = _cost;}

    function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
        require(!paused, 'The contract is paused!');
        minted[_msgSender()] = minted[_msgSender()] + _mintAmount;//CHECK
        require(minted[_msgSender()] <= maxMintAmountPerTx, "Max quantity reached");
        NFTminted += _mintAmount;
            _safeMint(_msgSender(), _mintAmount);}

    function burn(uint256 tokenId) public {
        _burn(tokenId, true); }

    function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner {
        require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
        //Minted by Owner without any cost, doesn't count on minted quantity
        NFTminted += _mintAmount;
        _safeMint(_receiver, _mintAmount);}

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;}

    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        require(_exists(_tokenId), 'ERC721Metadata: URI query for nonexistent token');
        if (revealed == false) {
            return hiddenMetadataUri;}
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix)): '';}
    
    function setRevealed(bool _state) public onlyOwner {
        //Reveal the token URI of the NFTs
        revealed = _state;}

    function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
        maxMintAmountPerTx = _maxMintAmountPerTx;}

    function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
        hiddenMetadataUri = _hiddenMetadataUri;}

    function setUriPrefix(string memory _uriPrefix) public onlyOwner {
        uriPrefix = _uriPrefix;}

    function setUriSuffix(string memory _uriSuffix) public onlyOwner {
        uriSuffix = _uriSuffix;}

    function setPaused(bool _state) public onlyOwner {
        paused = _state;}

    function setWhitelistMintEnabled(bool _state) public onlyOwner {
        whitelistMintEnabled = _state;}

    function whitelist(address _addr) public onlyOwner() {
        require(!whitelisted[_addr], "Account is already Whitlisted");
        whitelisted[_addr] = true;}

    function blacklist_A_whitelisted(address _addr) external onlyOwner() {
        require(whitelisted[_addr], "Account is already Blacklisted");
        whitelisted[_addr] = false;}

    function whitelistMint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
        // Verify whitelist requirements
        require(whitelistMintEnabled, 'The whitelist sale is not enabled!');
        //require(!whitelistClaimed[_msgSender()], 'Address already claimed!');
        require(whitelisted[_msgSender()], "Account is not in whitelist");
        minted[_msgSender()] = minted[_msgSender()] + _mintAmount;//CHECK
        require(minted[_msgSender()] <= maxMintAmountPerTx, "Max quantity reached");
        NFTminted += _mintAmount;
        //whitelistClaimed[_msgSender()] = true;
        _safeMint(_msgSender(), _mintAmount);}

    function withdraw() public onlyOwner nonReentrant {
    // This will transfer the remaining contract balance to the owner.
    // Do not remove this otherwise you will not be able to withdraw the funds.
    // =============================================================================
        (bool os, ) = payable(owner()).call{value: address(this).balance}('');
        require(os);}
        
    function _baseURI() internal view virtual override returns (string memory) {
        return uriPrefix;}}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"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":[],"name":"NFTminted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"blacklist_A_whitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"costNormal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"costWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"nonpayable","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCostNormal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCostWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhitelistMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenSymbol","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"whitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600a90805190602001906200002b9291906200066a565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b9080519060200190620000799291906200066a565b5066b1a2bc2ec50000600c5566d529ae9e860000600d556001600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff0219169083151502179055506000600f60026101000a81548160ff0219169083151502179055506040518060400160405280601081526020017f535441524649474854455220434c554200000000000000000000000000000000815250601290805190602001906200012e9291906200066a565b506040518060400160405280600381526020017f5346430000000000000000000000000000000000000000000000000000000000815250601390805190602001906200017c9291906200066a565b5061014d601455600c6015556040518060800160405280604181526020016200533b6041913960169080519060200190620001b99291906200066a565b50348015620001c757600080fd5b5060128054620001d79062000749565b80601f0160208091040260200160405190810160405280929190818152602001828054620002059062000749565b8015620002565780601f106200022a5761010080835404028352916020019162000256565b820191906000526020600020905b8154815290600101906020018083116200023857829003601f168201915b5050505050601380546200026a9062000749565b80601f0160208091040260200160405190810160405280929190818152602001828054620002989062000749565b8015620002e95780601f10620002bd57610100808354040283529160200191620002e9565b820191906000526020600020905b815481529060010190602001808311620002cb57829003601f168201915b50505050508160029080519060200190620003069291906200066a565b5080600390805190602001906200031f9291906200066a565b50620003306200042560201b60201c565b6000819055505050620003586200034c6200042e60201b60201c565b6200043660201b60201c565b60016009819055506014546014819055506200037c601554620004fc60201b60201c565b6200041f601680546200038f9062000749565b80601f0160208091040260200160405190810160405280929190818152602001828054620003bd9062000749565b80156200040e5780601f10620003e2576101008083540402835291602001916200040e565b820191906000526020600020905b815481529060010190602001808311620003f057829003601f168201915b50505050506200059560201b60201c565b62000801565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200050c6200042e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620005326200064060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200058b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200058290620007df565b60405180910390fd5b8060158190555050565b620005a56200042e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620005cb6200064060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000624576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200061b90620007df565b60405180910390fd5b80601690805190602001906200063c9291906200066a565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620006789062000749565b90600052602060002090601f0160209004810192826200069c5760008555620006e8565b82601f10620006b757805160ff1916838001178555620006e8565b82800160010185558215620006e8579182015b82811115620006e7578251825591602001919060010190620006ca565b5b509050620006f79190620006fb565b5090565b5b8082111562000716576000816000905550600101620006fc565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200076257607f821691505b6020821081036200077857620007776200071a565b5b50919050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620007c76020836200077e565b9150620007d4826200078f565b602082019050919050565b60006020820190508181036000830152620007fa81620007b8565b9050919050565b614b2a80620008116000396000f3fe6080604052600436106102935760003560e01c806370a082311161015a578063a45ba8e7116100c1578063d936547e1161007a578063d936547e146109ae578063e0a80853146109eb578063e985e9c514610a14578063efbd73f414610a51578063f2fde38b14610a7a578063f4501a4314610aa357610293565b8063a45ba8e7146108a0578063b071401b146108cb578063b767a098146108f4578063b88d4fde1461091d578063c87b56dd14610946578063d5abeb011461098357610293565b80638da5cb5b116101135780638da5cb5b146107b157806394354fd0146107dc57806395d89b41146108075780639b19251a14610832578063a0712d681461085b578063a22cb4651461087757610293565b806370a08231146106c2578063715018a6146106ff5780637b61c320146107165780637ec4a65914610741578063868ff4a21461076a578063897dd5ef1461078657610293565b80633ccfd60b116101fe5780635c975abb116101b75780635c975abb146105ae57806362b99ad4146105d95780636352211e146106045780636c02a931146106415780636caede3d1461066c5780636ceb141b1461069757610293565b80633ccfd60b146104c657806342842e0e146104dd57806342966c68146105065780634fdd43cb1461052f57806351830227146105585780635503a0e81461058357610293565b806316c38b3c1161025057806316c38b3c146103b857806318160ddd146103e157806319bf88871461040c5780631e7269c51461043557806323b872dd14610472578063301d911e1461049b57610293565b806301ffc9a71461029857806306fdde03146102d5578063081812fc14610300578063095ea7b31461033d578063121c93ca1461036657806316ba10e01461038f575b600080fd5b3480156102a457600080fd5b506102bf60048036038101906102ba91906139b3565b610acc565b6040516102cc91906139fb565b60405180910390f35b3480156102e157600080fd5b506102ea610b5e565b6040516102f79190613aaf565b60405180910390f35b34801561030c57600080fd5b5061032760048036038101906103229190613b07565b610bf0565b6040516103349190613b75565b60405180910390f35b34801561034957600080fd5b50610364600480360381019061035f9190613bbc565b610c6c565b005b34801561037257600080fd5b5061038d60048036038101906103889190613b07565b610e12565b005b34801561039b57600080fd5b506103b660048036038101906103b19190613d31565b610e98565b005b3480156103c457600080fd5b506103df60048036038101906103da9190613da6565b610f2e565b005b3480156103ed57600080fd5b506103f6610fc7565b6040516104039190613de2565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e9190613dfd565b610fde565b005b34801561044157600080fd5b5061045c60048036038101906104579190613dfd565b611141565b6040516104699190613de2565b60405180910390f35b34801561047e57600080fd5b5061049960048036038101906104949190613e2a565b611159565b005b3480156104a757600080fd5b506104b0611169565b6040516104bd9190613de2565b60405180910390f35b3480156104d257600080fd5b506104db61116f565b005b3480156104e957600080fd5b5061050460048036038101906104ff9190613e2a565b6112c0565b005b34801561051257600080fd5b5061052d60048036038101906105289190613b07565b6112e0565b005b34801561053b57600080fd5b5061055660048036038101906105519190613d31565b6112ee565b005b34801561056457600080fd5b5061056d611384565b60405161057a91906139fb565b60405180910390f35b34801561058f57600080fd5b50610598611397565b6040516105a59190613aaf565b60405180910390f35b3480156105ba57600080fd5b506105c3611425565b6040516105d091906139fb565b60405180910390f35b3480156105e557600080fd5b506105ee611438565b6040516105fb9190613aaf565b60405180910390f35b34801561061057600080fd5b5061062b60048036038101906106269190613b07565b6114c6565b6040516106389190613b75565b60405180910390f35b34801561064d57600080fd5b506106566114d8565b6040516106639190613aaf565b60405180910390f35b34801561067857600080fd5b50610681611566565b60405161068e91906139fb565b60405180910390f35b3480156106a357600080fd5b506106ac611579565b6040516106b99190613de2565b60405180910390f35b3480156106ce57600080fd5b506106e960048036038101906106e49190613dfd565b61157f565b6040516106f69190613de2565b60405180910390f35b34801561070b57600080fd5b50610714611637565b005b34801561072257600080fd5b5061072b6116bf565b6040516107389190613aaf565b60405180910390f35b34801561074d57600080fd5b5061076860048036038101906107639190613d31565b61174d565b005b610784600480360381019061077f9190613b07565b6117e3565b005b34801561079257600080fd5b5061079b611bbd565b6040516107a89190613de2565b60405180910390f35b3480156107bd57600080fd5b506107c6611bc3565b6040516107d39190613b75565b60405180910390f35b3480156107e857600080fd5b506107f1611bed565b6040516107fe9190613de2565b60405180910390f35b34801561081357600080fd5b5061081c611bf3565b6040516108299190613aaf565b60405180910390f35b34801561083e57600080fd5b5061085960048036038101906108549190613dfd565b611c85565b005b61087560048036038101906108709190613b07565b611de9565b005b34801561088357600080fd5b5061089e60048036038101906108999190613e7d565b612131565b005b3480156108ac57600080fd5b506108b56122a8565b6040516108c29190613aaf565b60405180910390f35b3480156108d757600080fd5b506108f260048036038101906108ed9190613b07565b612336565b005b34801561090057600080fd5b5061091b60048036038101906109169190613da6565b6123bc565b005b34801561092957600080fd5b50610944600480360381019061093f9190613f5e565b612455565b005b34801561095257600080fd5b5061096d60048036038101906109689190613b07565b6124c8565b60405161097a9190613aaf565b60405180910390f35b34801561098f57600080fd5b50610998612620565b6040516109a59190613de2565b60405180910390f35b3480156109ba57600080fd5b506109d560048036038101906109d09190613dfd565b612626565b6040516109e291906139fb565b60405180910390f35b3480156109f757600080fd5b50610a126004803603810190610a0d9190613da6565b612646565b005b348015610a2057600080fd5b50610a3b6004803603810190610a369190613fe1565b6126df565b604051610a4891906139fb565b60405180910390f35b348015610a5d57600080fd5b50610a786004803603810190610a739190614021565b612773565b005b348015610a8657600080fd5b50610aa16004803603810190610a9c9190613dfd565b61286d565b005b348015610aaf57600080fd5b50610aca6004803603810190610ac59190613b07565b612964565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b2757506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b575750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610b6d90614090565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9990614090565b8015610be65780601f10610bbb57610100808354040283529160200191610be6565b820191906000526020600020905b815481529060010190602001808311610bc957829003601f168201915b5050505050905090565b6000610bfb826129ea565b610c31576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c7782612a49565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cde576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cfd612b15565b73ffffffffffffffffffffffffffffffffffffffff1614610d6057610d2981610d24612b15565b6126df565b610d5f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610e1a612b1d565b73ffffffffffffffffffffffffffffffffffffffff16610e38611bc3565b73ffffffffffffffffffffffffffffffffffffffff1614610e8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e859061410d565b60405180910390fd5b80600c8190555050565b610ea0612b1d565b73ffffffffffffffffffffffffffffffffffffffff16610ebe611bc3565b73ffffffffffffffffffffffffffffffffffffffff1614610f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0b9061410d565b60405180910390fd5b80600b9080519060200190610f2a9291906138a4565b5050565b610f36612b1d565b73ffffffffffffffffffffffffffffffffffffffff16610f54611bc3565b73ffffffffffffffffffffffffffffffffffffffff1614610faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa19061410d565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6000610fd1612b25565b6001546000540303905090565b610fe6612b1d565b73ffffffffffffffffffffffffffffffffffffffff16611004611bc3565b73ffffffffffffffffffffffffffffffffffffffff161461105a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110519061410d565b60405180910390fd5b601060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166110e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dd90614179565b60405180910390fd5b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60116020528060005260406000206000915090505481565b611164838383612b2e565b505050565b600e5481565b611177612b1d565b73ffffffffffffffffffffffffffffffffffffffff16611195611bc3565b73ffffffffffffffffffffffffffffffffffffffff16146111eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e29061410d565b60405180910390fd5b600260095403611230576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611227906141e5565b60405180910390fd5b60026009819055506000611242611bc3565b73ffffffffffffffffffffffffffffffffffffffff164760405161126590614236565b60006040518083038185875af1925050503d80600081146112a2576040519150601f19603f3d011682016040523d82523d6000602084013e6112a7565b606091505b50509050806112b557600080fd5b506001600981905550565b6112db83838360405180602001604052806000815250612455565b505050565b6112eb816001612ed5565b50565b6112f6612b1d565b73ffffffffffffffffffffffffffffffffffffffff16611314611bc3565b73ffffffffffffffffffffffffffffffffffffffff161461136a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113619061410d565b60405180910390fd5b80601690805190602001906113809291906138a4565b5050565b600f60029054906101000a900460ff1681565b600b80546113a490614090565b80601f01602080910402602001604051908101604052809291908181526020018280546113d090614090565b801561141d5780601f106113f25761010080835404028352916020019161141d565b820191906000526020600020905b81548152906001019060200180831161140057829003601f168201915b505050505081565b600f60009054906101000a900460ff1681565b600a805461144590614090565b80601f016020809104026020016040519081016040528092919081815260200182805461147190614090565b80156114be5780601f10611493576101008083540402835291602001916114be565b820191906000526020600020905b8154815290600101906020018083116114a157829003601f168201915b505050505081565b60006114d182612a49565b9050919050565b601280546114e590614090565b80601f016020809104026020016040519081016040528092919081815260200182805461151190614090565b801561155e5780601f106115335761010080835404028352916020019161155e565b820191906000526020600020905b81548152906001019060200180831161154157829003601f168201915b505050505081565b600f60019054906101000a900460ff1681565b600d5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115e6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61163f612b1d565b73ffffffffffffffffffffffffffffffffffffffff1661165d611bc3565b73ffffffffffffffffffffffffffffffffffffffff16146116b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116aa9061410d565b60405180910390fd5b6116bd60006131ab565b565b601380546116cc90614090565b80601f01602080910402602001604051908101604052809291908181526020018280546116f890614090565b80156117455780601f1061171a57610100808354040283529160200191611745565b820191906000526020600020905b81548152906001019060200180831161172857829003601f168201915b505050505081565b611755612b1d565b73ffffffffffffffffffffffffffffffffffffffff16611773611bc3565b73ffffffffffffffffffffffffffffffffffffffff16146117c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c09061410d565b60405180910390fd5b80600a90805190602001906117df9291906138a4565b5050565b806000811180156117f657506015548111155b611835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182c90614297565b60405180910390fd5b60145481611841610fc7565b61184b91906142e6565b111561188c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188390614388565b60405180910390fd5b8160011515600f60019054906101000a900460ff1615151480156118c3575060011515600f60009054906101000a900460ff161515145b156119195780600c546118d691906143a8565b341015611918576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190f9061444e565b60405180910390fd5b5b60001515600f60009054906101000a900460ff161515036119855780600d5461194291906143a8565b341015611984576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197b9061444e565b60405180910390fd5b5b600f60019054906101000a900460ff166119d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cb906144e0565b60405180910390fd5b601060006119e0612b1d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5e9061454c565b60405180910390fd5b8260116000611a74612b1d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ab991906142e6565b60116000611ac5612b1d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060155460116000611b12612b1d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b85906145b8565b60405180910390fd5b82600e6000828254611ba091906142e6565b92505081905550611bb8611bb2612b1d565b84613271565b505050565b600c5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60155481565b606060038054611c0290614090565b80601f0160208091040260200160405190810160405280929190818152602001828054611c2e90614090565b8015611c7b5780601f10611c5057610100808354040283529160200191611c7b565b820191906000526020600020905b815481529060010190602001808311611c5e57829003601f168201915b5050505050905090565b611c8d612b1d565b73ffffffffffffffffffffffffffffffffffffffff16611cab611bc3565b73ffffffffffffffffffffffffffffffffffffffff1614611d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf89061410d565b60405180910390fd5b601060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611d8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8590614624565b60405180910390fd5b6001601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b80600081118015611dfc57506015548111155b611e3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3290614297565b60405180910390fd5b60145481611e47610fc7565b611e5191906142e6565b1115611e92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8990614388565b60405180910390fd5b8160011515600f60019054906101000a900460ff161515148015611ec9575060011515600f60009054906101000a900460ff161515145b15611f1f5780600c54611edc91906143a8565b341015611f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f159061444e565b60405180910390fd5b5b60001515600f60009054906101000a900460ff16151503611f8b5780600d54611f4891906143a8565b341015611f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f819061444e565b60405180910390fd5b5b600f60009054906101000a900460ff1615611fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd290614690565b60405180910390fd5b8260116000611fe8612b1d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461202d91906142e6565b60116000612039612b1d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060155460116000612086612b1d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115612102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f9906145b8565b60405180910390fd5b82600e600082825461211491906142e6565b9250508190555061212c612126612b1d565b84613271565b505050565b612139612b15565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361219d576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006121aa612b15565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612257612b15565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161229c91906139fb565b60405180910390a35050565b601680546122b590614090565b80601f01602080910402602001604051908101604052809291908181526020018280546122e190614090565b801561232e5780601f106123035761010080835404028352916020019161232e565b820191906000526020600020905b81548152906001019060200180831161231157829003601f168201915b505050505081565b61233e612b1d565b73ffffffffffffffffffffffffffffffffffffffff1661235c611bc3565b73ffffffffffffffffffffffffffffffffffffffff16146123b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a99061410d565b60405180910390fd5b8060158190555050565b6123c4612b1d565b73ffffffffffffffffffffffffffffffffffffffff166123e2611bc3565b73ffffffffffffffffffffffffffffffffffffffff1614612438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242f9061410d565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b612460848484612b2e565b60008373ffffffffffffffffffffffffffffffffffffffff163b146124c25761248b8484848461328f565b6124c1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606124d3826129ea565b612512576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250990614722565b60405180910390fd5b60001515600f60029054906101000a900460ff161515036125bf576016805461253a90614090565b80601f016020809104026020016040519081016040528092919081815260200182805461256690614090565b80156125b35780601f10612588576101008083540402835291602001916125b3565b820191906000526020600020905b81548152906001019060200180831161259657829003601f168201915b5050505050905061261b565b60006125c96133df565b905060008151116125e95760405180602001604052806000815250612617565b806125f384613471565b600b60405160200161260793929190614812565b6040516020818303038152906040525b9150505b919050565b60145481565b60106020528060005260406000206000915054906101000a900460ff1681565b61264e612b1d565b73ffffffffffffffffffffffffffffffffffffffff1661266c611bc3565b73ffffffffffffffffffffffffffffffffffffffff16146126c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b99061410d565b60405180910390fd5b80600f60026101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61277b612b1d565b73ffffffffffffffffffffffffffffffffffffffff16612799611bc3565b73ffffffffffffffffffffffffffffffffffffffff16146127ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e69061410d565b60405180910390fd5b601454826127fb610fc7565b61280591906142e6565b1115612846576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283d90614388565b60405180910390fd5b81600e600082825461285891906142e6565b925050819055506128698183613271565b5050565b612875612b1d565b73ffffffffffffffffffffffffffffffffffffffff16612893611bc3565b73ffffffffffffffffffffffffffffffffffffffff16146128e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e09061410d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294f906148b5565b60405180910390fd5b612961816131ab565b50565b61296c612b1d565b73ffffffffffffffffffffffffffffffffffffffff1661298a611bc3565b73ffffffffffffffffffffffffffffffffffffffff16146129e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d79061410d565b60405180910390fd5b80600d8190555050565b6000816129f5612b25565b11158015612a04575060005482105b8015612a42575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080612a58612b25565b11612ade57600054811015612add5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612adb575b60008103612ad1576004600083600190039350838152602001908152602001600020549050612aa7565b8092505050612b10565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600033905090565b60006001905090565b6000612b3982612a49565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612ba0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612bc1612b15565b73ffffffffffffffffffffffffffffffffffffffff161480612bf05750612bef85612bea612b15565b6126df565b5b80612c355750612bfe612b15565b73ffffffffffffffffffffffffffffffffffffffff16612c1d84610bf0565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612c6e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612cd4576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ce185858560016135d1565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b612dde866135d7565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831603612e665760006001840190506000600460008381526020019081526020016000205403612e64576000548114612e63578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ece85858560016135e1565b5050505050565b6000612ee083612a49565b905060008190508215612fbd5760008173ffffffffffffffffffffffffffffffffffffffff16612f0e612b15565b73ffffffffffffffffffffffffffffffffffffffff161480612f3d5750612f3c82612f37612b15565b6126df565b5b80612f825750612f4b612b15565b73ffffffffffffffffffffffffffffffffffffffff16612f6a86610bf0565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612fbb576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b612fcb8160008660016135d1565b6006600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600160806001901b03600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055507c02000000000000000000000000000000000000000000000000000000007c010000000000000000000000000000000000000000000000000000000060a042901b6130a0846135d7565b171717600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008316036131295760006001850190506000600460008381526020019081526020016000205403613127576000548114613126578260046000838152602001908152602001600020819055505b5b505b83600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46131938160008660016135e1565b60016000815480929190600101919050555050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61328b8282604051806020016040528060008152506135e7565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026132b5612b15565b8786866040518563ffffffff1660e01b81526004016132d7949392919061492a565b6020604051808303816000875af192505050801561331357506040513d601f19601f82011682018060405250810190613310919061498b565b60015b61338c573d8060008114613343576040519150601f19603f3d011682016040523d82523d6000602084013e613348565b606091505b506000815103613384576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546133ee90614090565b80601f016020809104026020016040519081016040528092919081815260200182805461341a90614090565b80156134675780601f1061343c57610100808354040283529160200191613467565b820191906000526020600020905b81548152906001019060200180831161344a57829003601f168201915b5050505050905090565b6060600082036134b8576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506135cc565b600082905060005b600082146134ea5780806134d3906149b8565b915050600a826134e39190614a2f565b91506134c0565b60008167ffffffffffffffff81111561350657613505613c06565b5b6040519080825280601f01601f1916602001820160405280156135385781602001600182028036833780820191505090505b5090505b600085146135c5576001826135519190614a60565b9150600a856135609190614a94565b603061356c91906142e6565b60f81b81838151811061358257613581614ac5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856135be9190614a2f565b945061353c565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603613653576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000830361368d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61369a60008583866135d1565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16136ff6001851461389a565b901b60a042901b61370f866135d7565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14613813575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46137c3600087848060010195508761328f565b6137f9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061375457826000541461380e57600080fd5b61387e565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210613814575b81600081905550505061389460008583866135e1565b50505050565b6000819050919050565b8280546138b090614090565b90600052602060002090601f0160209004810192826138d25760008555613919565b82601f106138eb57805160ff1916838001178555613919565b82800160010185558215613919579182015b828111156139185782518255916020019190600101906138fd565b5b509050613926919061392a565b5090565b5b8082111561394357600081600090555060010161392b565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6139908161395b565b811461399b57600080fd5b50565b6000813590506139ad81613987565b92915050565b6000602082840312156139c9576139c8613951565b5b60006139d78482850161399e565b91505092915050565b60008115159050919050565b6139f5816139e0565b82525050565b6000602082019050613a1060008301846139ec565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613a50578082015181840152602081019050613a35565b83811115613a5f576000848401525b50505050565b6000601f19601f8301169050919050565b6000613a8182613a16565b613a8b8185613a21565b9350613a9b818560208601613a32565b613aa481613a65565b840191505092915050565b60006020820190508181036000830152613ac98184613a76565b905092915050565b6000819050919050565b613ae481613ad1565b8114613aef57600080fd5b50565b600081359050613b0181613adb565b92915050565b600060208284031215613b1d57613b1c613951565b5b6000613b2b84828501613af2565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613b5f82613b34565b9050919050565b613b6f81613b54565b82525050565b6000602082019050613b8a6000830184613b66565b92915050565b613b9981613b54565b8114613ba457600080fd5b50565b600081359050613bb681613b90565b92915050565b60008060408385031215613bd357613bd2613951565b5b6000613be185828601613ba7565b9250506020613bf285828601613af2565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613c3e82613a65565b810181811067ffffffffffffffff82111715613c5d57613c5c613c06565b5b80604052505050565b6000613c70613947565b9050613c7c8282613c35565b919050565b600067ffffffffffffffff821115613c9c57613c9b613c06565b5b613ca582613a65565b9050602081019050919050565b82818337600083830152505050565b6000613cd4613ccf84613c81565b613c66565b905082815260208101848484011115613cf057613cef613c01565b5b613cfb848285613cb2565b509392505050565b600082601f830112613d1857613d17613bfc565b5b8135613d28848260208601613cc1565b91505092915050565b600060208284031215613d4757613d46613951565b5b600082013567ffffffffffffffff811115613d6557613d64613956565b5b613d7184828501613d03565b91505092915050565b613d83816139e0565b8114613d8e57600080fd5b50565b600081359050613da081613d7a565b92915050565b600060208284031215613dbc57613dbb613951565b5b6000613dca84828501613d91565b91505092915050565b613ddc81613ad1565b82525050565b6000602082019050613df76000830184613dd3565b92915050565b600060208284031215613e1357613e12613951565b5b6000613e2184828501613ba7565b91505092915050565b600080600060608486031215613e4357613e42613951565b5b6000613e5186828701613ba7565b9350506020613e6286828701613ba7565b9250506040613e7386828701613af2565b9150509250925092565b60008060408385031215613e9457613e93613951565b5b6000613ea285828601613ba7565b9250506020613eb385828601613d91565b9150509250929050565b600067ffffffffffffffff821115613ed857613ed7613c06565b5b613ee182613a65565b9050602081019050919050565b6000613f01613efc84613ebd565b613c66565b905082815260208101848484011115613f1d57613f1c613c01565b5b613f28848285613cb2565b509392505050565b600082601f830112613f4557613f44613bfc565b5b8135613f55848260208601613eee565b91505092915050565b60008060008060808587031215613f7857613f77613951565b5b6000613f8687828801613ba7565b9450506020613f9787828801613ba7565b9350506040613fa887828801613af2565b925050606085013567ffffffffffffffff811115613fc957613fc8613956565b5b613fd587828801613f30565b91505092959194509250565b60008060408385031215613ff857613ff7613951565b5b600061400685828601613ba7565b925050602061401785828601613ba7565b9150509250929050565b6000806040838503121561403857614037613951565b5b600061404685828601613af2565b925050602061405785828601613ba7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806140a857607f821691505b6020821081036140bb576140ba614061565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140f7602083613a21565b9150614102826140c1565b602082019050919050565b60006020820190508181036000830152614126816140ea565b9050919050565b7f4163636f756e7420697320616c726561647920426c61636b6c69737465640000600082015250565b6000614163601e83613a21565b915061416e8261412d565b602082019050919050565b6000602082019050818103600083015261419281614156565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006141cf601f83613a21565b91506141da82614199565b602082019050919050565b600060208201905081810360008301526141fe816141c2565b9050919050565b600081905092915050565b50565b6000614220600083614205565b915061422b82614210565b600082019050919050565b600061424182614213565b9150819050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000614281601483613a21565b915061428c8261424b565b602082019050919050565b600060208201905081810360008301526142b081614274565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006142f182613ad1565b91506142fc83613ad1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614331576143306142b7565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000614372601483613a21565b915061437d8261433c565b602082019050919050565b600060208201905081810360008301526143a181614365565b9050919050565b60006143b382613ad1565b91506143be83613ad1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143f7576143f66142b7565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000614438601383613a21565b915061444382614402565b602082019050919050565b600060208201905081810360008301526144678161442b565b9050919050565b7f5468652077686974656c6973742073616c65206973206e6f7420656e61626c6560008201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b60006144ca602283613a21565b91506144d58261446e565b604082019050919050565b600060208201905081810360008301526144f9816144bd565b9050919050565b7f4163636f756e74206973206e6f7420696e2077686974656c6973740000000000600082015250565b6000614536601b83613a21565b915061454182614500565b602082019050919050565b6000602082019050818103600083015261456581614529565b9050919050565b7f4d6178207175616e746974792072656163686564000000000000000000000000600082015250565b60006145a2601483613a21565b91506145ad8261456c565b602082019050919050565b600060208201905081810360008301526145d181614595565b9050919050565b7f4163636f756e7420697320616c726561647920576869746c6973746564000000600082015250565b600061460e601d83613a21565b9150614619826145d8565b602082019050919050565b6000602082019050818103600083015261463d81614601565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b600061467a601783613a21565b915061468582614644565b602082019050919050565b600060208201905081810360008301526146a98161466d565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061470c602f83613a21565b9150614717826146b0565b604082019050919050565b6000602082019050818103600083015261473b816146ff565b9050919050565b600081905092915050565b600061475882613a16565b6147628185614742565b9350614772818560208601613a32565b80840191505092915050565b60008190508160005260206000209050919050565b600081546147a081614090565b6147aa8186614742565b945060018216600081146147c557600181146147d657614809565b60ff19831686528186019350614809565b6147df8561477e565b60005b83811015614801578154818901526001820191506020810190506147e2565b838801955050505b50505092915050565b600061481e828661474d565b915061482a828561474d565b91506148368284614793565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061489f602683613a21565b91506148aa82614843565b604082019050919050565b600060208201905081810360008301526148ce81614892565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006148fc826148d5565b61490681856148e0565b9350614916818560208601613a32565b61491f81613a65565b840191505092915050565b600060808201905061493f6000830187613b66565b61494c6020830186613b66565b6149596040830185613dd3565b818103606083015261496b81846148f1565b905095945050505050565b60008151905061498581613987565b92915050565b6000602082840312156149a1576149a0613951565b5b60006149af84828501614976565b91505092915050565b60006149c382613ad1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036149f5576149f46142b7565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614a3a82613ad1565b9150614a4583613ad1565b925082614a5557614a54614a00565b5b828204905092915050565b6000614a6b82613ad1565b9150614a7683613ad1565b925082821015614a8957614a886142b7565b5b828203905092915050565b6000614a9f82613ad1565b9150614aaa83613ad1565b925082614aba57614ab9614a00565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220dc41e260baa8c14630e5da2b1c38fb8ca5a4fd1976849931765da3585bb5ae5d64736f6c634300080e0033697066733a2f2f516d56557235337a6379725872375666426737504c6a6d4d634c31374e3558656a38624b5342625241726f3874512f68696464656e2e6a736f6e

Deployed Bytecode

0x6080604052600436106102935760003560e01c806370a082311161015a578063a45ba8e7116100c1578063d936547e1161007a578063d936547e146109ae578063e0a80853146109eb578063e985e9c514610a14578063efbd73f414610a51578063f2fde38b14610a7a578063f4501a4314610aa357610293565b8063a45ba8e7146108a0578063b071401b146108cb578063b767a098146108f4578063b88d4fde1461091d578063c87b56dd14610946578063d5abeb011461098357610293565b80638da5cb5b116101135780638da5cb5b146107b157806394354fd0146107dc57806395d89b41146108075780639b19251a14610832578063a0712d681461085b578063a22cb4651461087757610293565b806370a08231146106c2578063715018a6146106ff5780637b61c320146107165780637ec4a65914610741578063868ff4a21461076a578063897dd5ef1461078657610293565b80633ccfd60b116101fe5780635c975abb116101b75780635c975abb146105ae57806362b99ad4146105d95780636352211e146106045780636c02a931146106415780636caede3d1461066c5780636ceb141b1461069757610293565b80633ccfd60b146104c657806342842e0e146104dd57806342966c68146105065780634fdd43cb1461052f57806351830227146105585780635503a0e81461058357610293565b806316c38b3c1161025057806316c38b3c146103b857806318160ddd146103e157806319bf88871461040c5780631e7269c51461043557806323b872dd14610472578063301d911e1461049b57610293565b806301ffc9a71461029857806306fdde03146102d5578063081812fc14610300578063095ea7b31461033d578063121c93ca1461036657806316ba10e01461038f575b600080fd5b3480156102a457600080fd5b506102bf60048036038101906102ba91906139b3565b610acc565b6040516102cc91906139fb565b60405180910390f35b3480156102e157600080fd5b506102ea610b5e565b6040516102f79190613aaf565b60405180910390f35b34801561030c57600080fd5b5061032760048036038101906103229190613b07565b610bf0565b6040516103349190613b75565b60405180910390f35b34801561034957600080fd5b50610364600480360381019061035f9190613bbc565b610c6c565b005b34801561037257600080fd5b5061038d60048036038101906103889190613b07565b610e12565b005b34801561039b57600080fd5b506103b660048036038101906103b19190613d31565b610e98565b005b3480156103c457600080fd5b506103df60048036038101906103da9190613da6565b610f2e565b005b3480156103ed57600080fd5b506103f6610fc7565b6040516104039190613de2565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e9190613dfd565b610fde565b005b34801561044157600080fd5b5061045c60048036038101906104579190613dfd565b611141565b6040516104699190613de2565b60405180910390f35b34801561047e57600080fd5b5061049960048036038101906104949190613e2a565b611159565b005b3480156104a757600080fd5b506104b0611169565b6040516104bd9190613de2565b60405180910390f35b3480156104d257600080fd5b506104db61116f565b005b3480156104e957600080fd5b5061050460048036038101906104ff9190613e2a565b6112c0565b005b34801561051257600080fd5b5061052d60048036038101906105289190613b07565b6112e0565b005b34801561053b57600080fd5b5061055660048036038101906105519190613d31565b6112ee565b005b34801561056457600080fd5b5061056d611384565b60405161057a91906139fb565b60405180910390f35b34801561058f57600080fd5b50610598611397565b6040516105a59190613aaf565b60405180910390f35b3480156105ba57600080fd5b506105c3611425565b6040516105d091906139fb565b60405180910390f35b3480156105e557600080fd5b506105ee611438565b6040516105fb9190613aaf565b60405180910390f35b34801561061057600080fd5b5061062b60048036038101906106269190613b07565b6114c6565b6040516106389190613b75565b60405180910390f35b34801561064d57600080fd5b506106566114d8565b6040516106639190613aaf565b60405180910390f35b34801561067857600080fd5b50610681611566565b60405161068e91906139fb565b60405180910390f35b3480156106a357600080fd5b506106ac611579565b6040516106b99190613de2565b60405180910390f35b3480156106ce57600080fd5b506106e960048036038101906106e49190613dfd565b61157f565b6040516106f69190613de2565b60405180910390f35b34801561070b57600080fd5b50610714611637565b005b34801561072257600080fd5b5061072b6116bf565b6040516107389190613aaf565b60405180910390f35b34801561074d57600080fd5b5061076860048036038101906107639190613d31565b61174d565b005b610784600480360381019061077f9190613b07565b6117e3565b005b34801561079257600080fd5b5061079b611bbd565b6040516107a89190613de2565b60405180910390f35b3480156107bd57600080fd5b506107c6611bc3565b6040516107d39190613b75565b60405180910390f35b3480156107e857600080fd5b506107f1611bed565b6040516107fe9190613de2565b60405180910390f35b34801561081357600080fd5b5061081c611bf3565b6040516108299190613aaf565b60405180910390f35b34801561083e57600080fd5b5061085960048036038101906108549190613dfd565b611c85565b005b61087560048036038101906108709190613b07565b611de9565b005b34801561088357600080fd5b5061089e60048036038101906108999190613e7d565b612131565b005b3480156108ac57600080fd5b506108b56122a8565b6040516108c29190613aaf565b60405180910390f35b3480156108d757600080fd5b506108f260048036038101906108ed9190613b07565b612336565b005b34801561090057600080fd5b5061091b60048036038101906109169190613da6565b6123bc565b005b34801561092957600080fd5b50610944600480360381019061093f9190613f5e565b612455565b005b34801561095257600080fd5b5061096d60048036038101906109689190613b07565b6124c8565b60405161097a9190613aaf565b60405180910390f35b34801561098f57600080fd5b50610998612620565b6040516109a59190613de2565b60405180910390f35b3480156109ba57600080fd5b506109d560048036038101906109d09190613dfd565b612626565b6040516109e291906139fb565b60405180910390f35b3480156109f757600080fd5b50610a126004803603810190610a0d9190613da6565b612646565b005b348015610a2057600080fd5b50610a3b6004803603810190610a369190613fe1565b6126df565b604051610a4891906139fb565b60405180910390f35b348015610a5d57600080fd5b50610a786004803603810190610a739190614021565b612773565b005b348015610a8657600080fd5b50610aa16004803603810190610a9c9190613dfd565b61286d565b005b348015610aaf57600080fd5b50610aca6004803603810190610ac59190613b07565b612964565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b2757506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b575750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610b6d90614090565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9990614090565b8015610be65780601f10610bbb57610100808354040283529160200191610be6565b820191906000526020600020905b815481529060010190602001808311610bc957829003601f168201915b5050505050905090565b6000610bfb826129ea565b610c31576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c7782612a49565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cde576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cfd612b15565b73ffffffffffffffffffffffffffffffffffffffff1614610d6057610d2981610d24612b15565b6126df565b610d5f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610e1a612b1d565b73ffffffffffffffffffffffffffffffffffffffff16610e38611bc3565b73ffffffffffffffffffffffffffffffffffffffff1614610e8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e859061410d565b60405180910390fd5b80600c8190555050565b610ea0612b1d565b73ffffffffffffffffffffffffffffffffffffffff16610ebe611bc3565b73ffffffffffffffffffffffffffffffffffffffff1614610f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0b9061410d565b60405180910390fd5b80600b9080519060200190610f2a9291906138a4565b5050565b610f36612b1d565b73ffffffffffffffffffffffffffffffffffffffff16610f54611bc3565b73ffffffffffffffffffffffffffffffffffffffff1614610faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa19061410d565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6000610fd1612b25565b6001546000540303905090565b610fe6612b1d565b73ffffffffffffffffffffffffffffffffffffffff16611004611bc3565b73ffffffffffffffffffffffffffffffffffffffff161461105a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110519061410d565b60405180910390fd5b601060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166110e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dd90614179565b60405180910390fd5b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60116020528060005260406000206000915090505481565b611164838383612b2e565b505050565b600e5481565b611177612b1d565b73ffffffffffffffffffffffffffffffffffffffff16611195611bc3565b73ffffffffffffffffffffffffffffffffffffffff16146111eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e29061410d565b60405180910390fd5b600260095403611230576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611227906141e5565b60405180910390fd5b60026009819055506000611242611bc3565b73ffffffffffffffffffffffffffffffffffffffff164760405161126590614236565b60006040518083038185875af1925050503d80600081146112a2576040519150601f19603f3d011682016040523d82523d6000602084013e6112a7565b606091505b50509050806112b557600080fd5b506001600981905550565b6112db83838360405180602001604052806000815250612455565b505050565b6112eb816001612ed5565b50565b6112f6612b1d565b73ffffffffffffffffffffffffffffffffffffffff16611314611bc3565b73ffffffffffffffffffffffffffffffffffffffff161461136a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113619061410d565b60405180910390fd5b80601690805190602001906113809291906138a4565b5050565b600f60029054906101000a900460ff1681565b600b80546113a490614090565b80601f01602080910402602001604051908101604052809291908181526020018280546113d090614090565b801561141d5780601f106113f25761010080835404028352916020019161141d565b820191906000526020600020905b81548152906001019060200180831161140057829003601f168201915b505050505081565b600f60009054906101000a900460ff1681565b600a805461144590614090565b80601f016020809104026020016040519081016040528092919081815260200182805461147190614090565b80156114be5780601f10611493576101008083540402835291602001916114be565b820191906000526020600020905b8154815290600101906020018083116114a157829003601f168201915b505050505081565b60006114d182612a49565b9050919050565b601280546114e590614090565b80601f016020809104026020016040519081016040528092919081815260200182805461151190614090565b801561155e5780601f106115335761010080835404028352916020019161155e565b820191906000526020600020905b81548152906001019060200180831161154157829003601f168201915b505050505081565b600f60019054906101000a900460ff1681565b600d5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115e6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61163f612b1d565b73ffffffffffffffffffffffffffffffffffffffff1661165d611bc3565b73ffffffffffffffffffffffffffffffffffffffff16146116b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116aa9061410d565b60405180910390fd5b6116bd60006131ab565b565b601380546116cc90614090565b80601f01602080910402602001604051908101604052809291908181526020018280546116f890614090565b80156117455780601f1061171a57610100808354040283529160200191611745565b820191906000526020600020905b81548152906001019060200180831161172857829003601f168201915b505050505081565b611755612b1d565b73ffffffffffffffffffffffffffffffffffffffff16611773611bc3565b73ffffffffffffffffffffffffffffffffffffffff16146117c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c09061410d565b60405180910390fd5b80600a90805190602001906117df9291906138a4565b5050565b806000811180156117f657506015548111155b611835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182c90614297565b60405180910390fd5b60145481611841610fc7565b61184b91906142e6565b111561188c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188390614388565b60405180910390fd5b8160011515600f60019054906101000a900460ff1615151480156118c3575060011515600f60009054906101000a900460ff161515145b156119195780600c546118d691906143a8565b341015611918576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190f9061444e565b60405180910390fd5b5b60001515600f60009054906101000a900460ff161515036119855780600d5461194291906143a8565b341015611984576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197b9061444e565b60405180910390fd5b5b600f60019054906101000a900460ff166119d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cb906144e0565b60405180910390fd5b601060006119e0612b1d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5e9061454c565b60405180910390fd5b8260116000611a74612b1d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ab991906142e6565b60116000611ac5612b1d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060155460116000611b12612b1d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b85906145b8565b60405180910390fd5b82600e6000828254611ba091906142e6565b92505081905550611bb8611bb2612b1d565b84613271565b505050565b600c5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60155481565b606060038054611c0290614090565b80601f0160208091040260200160405190810160405280929190818152602001828054611c2e90614090565b8015611c7b5780601f10611c5057610100808354040283529160200191611c7b565b820191906000526020600020905b815481529060010190602001808311611c5e57829003601f168201915b5050505050905090565b611c8d612b1d565b73ffffffffffffffffffffffffffffffffffffffff16611cab611bc3565b73ffffffffffffffffffffffffffffffffffffffff1614611d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf89061410d565b60405180910390fd5b601060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611d8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8590614624565b60405180910390fd5b6001601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b80600081118015611dfc57506015548111155b611e3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3290614297565b60405180910390fd5b60145481611e47610fc7565b611e5191906142e6565b1115611e92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8990614388565b60405180910390fd5b8160011515600f60019054906101000a900460ff161515148015611ec9575060011515600f60009054906101000a900460ff161515145b15611f1f5780600c54611edc91906143a8565b341015611f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f159061444e565b60405180910390fd5b5b60001515600f60009054906101000a900460ff16151503611f8b5780600d54611f4891906143a8565b341015611f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f819061444e565b60405180910390fd5b5b600f60009054906101000a900460ff1615611fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd290614690565b60405180910390fd5b8260116000611fe8612b1d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461202d91906142e6565b60116000612039612b1d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060155460116000612086612b1d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115612102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f9906145b8565b60405180910390fd5b82600e600082825461211491906142e6565b9250508190555061212c612126612b1d565b84613271565b505050565b612139612b15565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361219d576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006121aa612b15565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612257612b15565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161229c91906139fb565b60405180910390a35050565b601680546122b590614090565b80601f01602080910402602001604051908101604052809291908181526020018280546122e190614090565b801561232e5780601f106123035761010080835404028352916020019161232e565b820191906000526020600020905b81548152906001019060200180831161231157829003601f168201915b505050505081565b61233e612b1d565b73ffffffffffffffffffffffffffffffffffffffff1661235c611bc3565b73ffffffffffffffffffffffffffffffffffffffff16146123b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a99061410d565b60405180910390fd5b8060158190555050565b6123c4612b1d565b73ffffffffffffffffffffffffffffffffffffffff166123e2611bc3565b73ffffffffffffffffffffffffffffffffffffffff1614612438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242f9061410d565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b612460848484612b2e565b60008373ffffffffffffffffffffffffffffffffffffffff163b146124c25761248b8484848461328f565b6124c1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606124d3826129ea565b612512576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250990614722565b60405180910390fd5b60001515600f60029054906101000a900460ff161515036125bf576016805461253a90614090565b80601f016020809104026020016040519081016040528092919081815260200182805461256690614090565b80156125b35780601f10612588576101008083540402835291602001916125b3565b820191906000526020600020905b81548152906001019060200180831161259657829003601f168201915b5050505050905061261b565b60006125c96133df565b905060008151116125e95760405180602001604052806000815250612617565b806125f384613471565b600b60405160200161260793929190614812565b6040516020818303038152906040525b9150505b919050565b60145481565b60106020528060005260406000206000915054906101000a900460ff1681565b61264e612b1d565b73ffffffffffffffffffffffffffffffffffffffff1661266c611bc3565b73ffffffffffffffffffffffffffffffffffffffff16146126c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b99061410d565b60405180910390fd5b80600f60026101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61277b612b1d565b73ffffffffffffffffffffffffffffffffffffffff16612799611bc3565b73ffffffffffffffffffffffffffffffffffffffff16146127ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e69061410d565b60405180910390fd5b601454826127fb610fc7565b61280591906142e6565b1115612846576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283d90614388565b60405180910390fd5b81600e600082825461285891906142e6565b925050819055506128698183613271565b5050565b612875612b1d565b73ffffffffffffffffffffffffffffffffffffffff16612893611bc3565b73ffffffffffffffffffffffffffffffffffffffff16146128e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e09061410d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294f906148b5565b60405180910390fd5b612961816131ab565b50565b61296c612b1d565b73ffffffffffffffffffffffffffffffffffffffff1661298a611bc3565b73ffffffffffffffffffffffffffffffffffffffff16146129e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d79061410d565b60405180910390fd5b80600d8190555050565b6000816129f5612b25565b11158015612a04575060005482105b8015612a42575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080612a58612b25565b11612ade57600054811015612add5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612adb575b60008103612ad1576004600083600190039350838152602001908152602001600020549050612aa7565b8092505050612b10565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600033905090565b60006001905090565b6000612b3982612a49565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612ba0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612bc1612b15565b73ffffffffffffffffffffffffffffffffffffffff161480612bf05750612bef85612bea612b15565b6126df565b5b80612c355750612bfe612b15565b73ffffffffffffffffffffffffffffffffffffffff16612c1d84610bf0565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612c6e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612cd4576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ce185858560016135d1565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b612dde866135d7565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831603612e665760006001840190506000600460008381526020019081526020016000205403612e64576000548114612e63578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ece85858560016135e1565b5050505050565b6000612ee083612a49565b905060008190508215612fbd5760008173ffffffffffffffffffffffffffffffffffffffff16612f0e612b15565b73ffffffffffffffffffffffffffffffffffffffff161480612f3d5750612f3c82612f37612b15565b6126df565b5b80612f825750612f4b612b15565b73ffffffffffffffffffffffffffffffffffffffff16612f6a86610bf0565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612fbb576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b612fcb8160008660016135d1565b6006600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600160806001901b03600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055507c02000000000000000000000000000000000000000000000000000000007c010000000000000000000000000000000000000000000000000000000060a042901b6130a0846135d7565b171717600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008316036131295760006001850190506000600460008381526020019081526020016000205403613127576000548114613126578260046000838152602001908152602001600020819055505b5b505b83600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46131938160008660016135e1565b60016000815480929190600101919050555050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61328b8282604051806020016040528060008152506135e7565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026132b5612b15565b8786866040518563ffffffff1660e01b81526004016132d7949392919061492a565b6020604051808303816000875af192505050801561331357506040513d601f19601f82011682018060405250810190613310919061498b565b60015b61338c573d8060008114613343576040519150601f19603f3d011682016040523d82523d6000602084013e613348565b606091505b506000815103613384576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546133ee90614090565b80601f016020809104026020016040519081016040528092919081815260200182805461341a90614090565b80156134675780601f1061343c57610100808354040283529160200191613467565b820191906000526020600020905b81548152906001019060200180831161344a57829003601f168201915b5050505050905090565b6060600082036134b8576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506135cc565b600082905060005b600082146134ea5780806134d3906149b8565b915050600a826134e39190614a2f565b91506134c0565b60008167ffffffffffffffff81111561350657613505613c06565b5b6040519080825280601f01601f1916602001820160405280156135385781602001600182028036833780820191505090505b5090505b600085146135c5576001826135519190614a60565b9150600a856135609190614a94565b603061356c91906142e6565b60f81b81838151811061358257613581614ac5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856135be9190614a2f565b945061353c565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603613653576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000830361368d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61369a60008583866135d1565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16136ff6001851461389a565b901b60a042901b61370f866135d7565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14613813575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46137c3600087848060010195508761328f565b6137f9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061375457826000541461380e57600080fd5b61387e565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210613814575b81600081905550505061389460008583866135e1565b50505050565b6000819050919050565b8280546138b090614090565b90600052602060002090601f0160209004810192826138d25760008555613919565b82601f106138eb57805160ff1916838001178555613919565b82800160010185558215613919579182015b828111156139185782518255916020019190600101906138fd565b5b509050613926919061392a565b5090565b5b8082111561394357600081600090555060010161392b565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6139908161395b565b811461399b57600080fd5b50565b6000813590506139ad81613987565b92915050565b6000602082840312156139c9576139c8613951565b5b60006139d78482850161399e565b91505092915050565b60008115159050919050565b6139f5816139e0565b82525050565b6000602082019050613a1060008301846139ec565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613a50578082015181840152602081019050613a35565b83811115613a5f576000848401525b50505050565b6000601f19601f8301169050919050565b6000613a8182613a16565b613a8b8185613a21565b9350613a9b818560208601613a32565b613aa481613a65565b840191505092915050565b60006020820190508181036000830152613ac98184613a76565b905092915050565b6000819050919050565b613ae481613ad1565b8114613aef57600080fd5b50565b600081359050613b0181613adb565b92915050565b600060208284031215613b1d57613b1c613951565b5b6000613b2b84828501613af2565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613b5f82613b34565b9050919050565b613b6f81613b54565b82525050565b6000602082019050613b8a6000830184613b66565b92915050565b613b9981613b54565b8114613ba457600080fd5b50565b600081359050613bb681613b90565b92915050565b60008060408385031215613bd357613bd2613951565b5b6000613be185828601613ba7565b9250506020613bf285828601613af2565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613c3e82613a65565b810181811067ffffffffffffffff82111715613c5d57613c5c613c06565b5b80604052505050565b6000613c70613947565b9050613c7c8282613c35565b919050565b600067ffffffffffffffff821115613c9c57613c9b613c06565b5b613ca582613a65565b9050602081019050919050565b82818337600083830152505050565b6000613cd4613ccf84613c81565b613c66565b905082815260208101848484011115613cf057613cef613c01565b5b613cfb848285613cb2565b509392505050565b600082601f830112613d1857613d17613bfc565b5b8135613d28848260208601613cc1565b91505092915050565b600060208284031215613d4757613d46613951565b5b600082013567ffffffffffffffff811115613d6557613d64613956565b5b613d7184828501613d03565b91505092915050565b613d83816139e0565b8114613d8e57600080fd5b50565b600081359050613da081613d7a565b92915050565b600060208284031215613dbc57613dbb613951565b5b6000613dca84828501613d91565b91505092915050565b613ddc81613ad1565b82525050565b6000602082019050613df76000830184613dd3565b92915050565b600060208284031215613e1357613e12613951565b5b6000613e2184828501613ba7565b91505092915050565b600080600060608486031215613e4357613e42613951565b5b6000613e5186828701613ba7565b9350506020613e6286828701613ba7565b9250506040613e7386828701613af2565b9150509250925092565b60008060408385031215613e9457613e93613951565b5b6000613ea285828601613ba7565b9250506020613eb385828601613d91565b9150509250929050565b600067ffffffffffffffff821115613ed857613ed7613c06565b5b613ee182613a65565b9050602081019050919050565b6000613f01613efc84613ebd565b613c66565b905082815260208101848484011115613f1d57613f1c613c01565b5b613f28848285613cb2565b509392505050565b600082601f830112613f4557613f44613bfc565b5b8135613f55848260208601613eee565b91505092915050565b60008060008060808587031215613f7857613f77613951565b5b6000613f8687828801613ba7565b9450506020613f9787828801613ba7565b9350506040613fa887828801613af2565b925050606085013567ffffffffffffffff811115613fc957613fc8613956565b5b613fd587828801613f30565b91505092959194509250565b60008060408385031215613ff857613ff7613951565b5b600061400685828601613ba7565b925050602061401785828601613ba7565b9150509250929050565b6000806040838503121561403857614037613951565b5b600061404685828601613af2565b925050602061405785828601613ba7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806140a857607f821691505b6020821081036140bb576140ba614061565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140f7602083613a21565b9150614102826140c1565b602082019050919050565b60006020820190508181036000830152614126816140ea565b9050919050565b7f4163636f756e7420697320616c726561647920426c61636b6c69737465640000600082015250565b6000614163601e83613a21565b915061416e8261412d565b602082019050919050565b6000602082019050818103600083015261419281614156565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006141cf601f83613a21565b91506141da82614199565b602082019050919050565b600060208201905081810360008301526141fe816141c2565b9050919050565b600081905092915050565b50565b6000614220600083614205565b915061422b82614210565b600082019050919050565b600061424182614213565b9150819050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000614281601483613a21565b915061428c8261424b565b602082019050919050565b600060208201905081810360008301526142b081614274565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006142f182613ad1565b91506142fc83613ad1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614331576143306142b7565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000614372601483613a21565b915061437d8261433c565b602082019050919050565b600060208201905081810360008301526143a181614365565b9050919050565b60006143b382613ad1565b91506143be83613ad1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143f7576143f66142b7565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000614438601383613a21565b915061444382614402565b602082019050919050565b600060208201905081810360008301526144678161442b565b9050919050565b7f5468652077686974656c6973742073616c65206973206e6f7420656e61626c6560008201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b60006144ca602283613a21565b91506144d58261446e565b604082019050919050565b600060208201905081810360008301526144f9816144bd565b9050919050565b7f4163636f756e74206973206e6f7420696e2077686974656c6973740000000000600082015250565b6000614536601b83613a21565b915061454182614500565b602082019050919050565b6000602082019050818103600083015261456581614529565b9050919050565b7f4d6178207175616e746974792072656163686564000000000000000000000000600082015250565b60006145a2601483613a21565b91506145ad8261456c565b602082019050919050565b600060208201905081810360008301526145d181614595565b9050919050565b7f4163636f756e7420697320616c726561647920576869746c6973746564000000600082015250565b600061460e601d83613a21565b9150614619826145d8565b602082019050919050565b6000602082019050818103600083015261463d81614601565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b600061467a601783613a21565b915061468582614644565b602082019050919050565b600060208201905081810360008301526146a98161466d565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061470c602f83613a21565b9150614717826146b0565b604082019050919050565b6000602082019050818103600083015261473b816146ff565b9050919050565b600081905092915050565b600061475882613a16565b6147628185614742565b9350614772818560208601613a32565b80840191505092915050565b60008190508160005260206000209050919050565b600081546147a081614090565b6147aa8186614742565b945060018216600081146147c557600181146147d657614809565b60ff19831686528186019350614809565b6147df8561477e565b60005b83811015614801578154818901526001820191506020810190506147e2565b838801955050505b50505092915050565b600061481e828661474d565b915061482a828561474d565b91506148368284614793565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061489f602683613a21565b91506148aa82614843565b604082019050919050565b600060208201905081810360008301526148ce81614892565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006148fc826148d5565b61490681856148e0565b9350614916818560208601613a32565b61491f81613a65565b840191505092915050565b600060808201905061493f6000830187613b66565b61494c6020830186613b66565b6149596040830185613dd3565b818103606083015261496b81846148f1565b905095945050505050565b60008151905061498581613987565b92915050565b6000602082840312156149a1576149a0613951565b5b60006149af84828501614976565b91505092915050565b60006149c382613ad1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036149f5576149f46142b7565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614a3a82613ad1565b9150614a4583613ad1565b925082614a5557614a54614a00565b5b828204905092915050565b6000614a6b82613ad1565b9150614a7683613ad1565b925082821015614a8957614a886142b7565b5b828203905092915050565b6000614a9f82613ad1565b9150614aaa83613ad1565b925082614aba57614ab9614a00565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220dc41e260baa8c14630e5da2b1c38fb8ca5a4fd1976849931765da3585bb5ae5d64736f6c634300080e0033

Deployed Bytecode Sourcemap

32841:5666:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9997:470;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13536:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14933:196;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14475:450;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34488:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36628:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36736:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9217:285;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37105:180;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33369:38;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15611:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33112:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37993:393;;;;;;;;;;;;;:::i;:::-;;15749:145;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35148:72;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36380:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33224:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32977:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33145:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32942:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13390:138;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33416:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33177:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33067:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10475:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30591:142;;;;;;;;;;;;;:::i;:::-;;33467:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36520:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37293:692;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33019:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30264:133;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33544:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13638:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36934:163;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34726:414;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15137:300;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33589:101;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36242:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36821:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15902:333;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35663:434;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33507:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33318:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36109:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15445:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35228:324;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30741:272;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34610:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9997:470;10082:4;10397:10;10382:25;;:11;:25;;;;:54;;;;10426:10;10411:25;;:11;:25;;;;10382:54;:83;;;;10455:10;10440:25;;:11;:25;;;;10382:83;10362:103;;9997:470;;;:::o;13536:94::-;13590:13;13623:5;13616:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13536:94;:::o;14933:196::-;15001:7;15026:16;15034:7;15026;:16::i;:::-;15021:64;;15051:34;;;;;;;;;;;;;;15021:64;15103:15;:24;15119:7;15103:24;;;;;;;;;;;;;;;;;;;;;15096:31;;14933:196;;;:::o;14475:450::-;14548:13;14580:27;14599:7;14580:18;:27::i;:::-;14548:61;;14630:5;14624:11;;:2;:11;;;14620:48;;14644:24;;;;;;;;;;;;;;14620:48;14706:5;14683:28;;:19;:17;:19::i;:::-;:28;;;14679:161;;14731:44;14748:5;14755:19;:17;:19::i;:::-;14731:16;:44::i;:::-;14726:114;;14803:35;;;;;;;;;;;;;;14726:114;14679:161;14877:2;14850:15;:24;14866:7;14850:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;14915:7;14911:2;14895:28;;14904:5;14895:28;;;;;;;;;;;;14537:388;14475:450;;:::o;34488:114::-;30520:12;:10;:12::i;:::-;30509:23;;:7;:5;:7::i;:::-;:23;;;30501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34595:5:::1;34579:13;:21;;;;34488:114:::0;:::o;36628:100::-;30520:12;:10;:12::i;:::-;30509:23;;:7;:5;:7::i;:::-;:23;;;30501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36716:10:::1;36704:9;:22;;;;;;;;;;;;:::i;:::-;;36628:100:::0;:::o;36736:77::-;30520:12;:10;:12::i;:::-;30509:23;;:7;:5;:7::i;:::-;:23;;;30501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36805:6:::1;36796;;:15;;;;;;;;;;;;;;;;;;36736:77:::0;:::o;9217:285::-;9270:7;9484:15;:13;:15::i;:::-;9469:12;;9453:13;;:28;:46;9446:53;;9217:285;:::o;37105:180::-;30520:12;:10;:12::i;:::-;30509:23;;:7;:5;:7::i;:::-;:23;;;30501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37193:11:::1;:18;37205:5;37193:18;;;;;;;;;;;;;;;;;;;;;;;;;37185:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;37278:5;37257:11;:18;37269:5;37257:18;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;37105:180:::0;:::o;33369:38::-;;;;;;;;;;;;;;;;;:::o;15611:130::-;15711:28;15721:4;15727:2;15731:7;15711:9;:28::i;:::-;15611:130;;;:::o;33112:24::-;;;;:::o;37993:393::-;30520:12;:10;:12::i;:::-;30509:23;;:7;:5;:7::i;:::-;:23;;;30501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29134:1:::1;29514:7;;:19:::0;29506:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;29134:1;29645:7;:18;;;;38294:7:::2;38315;:5;:7::i;:::-;38307:21;;38336;38307:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38293:69;;;38381:2;38373:11;;;::::0;::::2;;38043:343;29090:1:::1;29686:7;:22;;;;37993:393::o:0;15749:145::-;15853:39;15870:4;15876:2;15880:7;15853:39;;;;;;;;;;;;:16;:39::i;:::-;15749:145;;;:::o;35148:72::-;35197:20;35203:7;35212:4;35197:5;:20::i;:::-;35148:72;:::o;36380:132::-;30520:12;:10;:12::i;:::-;30509:23;;:7;:5;:7::i;:::-;:23;;;30501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36492:18:::1;36472:17;:38;;;;;;;;;;;;:::i;:::-;;36380:132:::0;:::o;33224:28::-;;;;;;;;;;;;;:::o;32977:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33145:25::-;;;;;;;;;;;;;:::o;32942:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;13390:138::-;13454:7;13497:27;13516:7;13497:18;:27::i;:::-;13474:52;;13390:138;;;:::o;33416:44::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33177:40::-;;;;;;;;;;;;;:::o;33067:38::-;;;;:::o;10475:218::-;10539:7;10580:1;10563:19;;:5;:19;;;10559:60;;10591:28;;;;;;;;;;;;;;10559:60;6470:13;10637:18;:25;10656:5;10637:25;;;;;;;;;;;;;;;;:54;10630:61;;10475:218;;;:::o;30591:142::-;30520:12;:10;:12::i;:::-;30509:23;;:7;:5;:7::i;:::-;:23;;;30501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30701:30:::1;30728:1;30701:18;:30::i;:::-;30591:142::o:0;33467:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;36520:100::-;30520:12;:10;:12::i;:::-;30509:23;;:7;:5;:7::i;:::-;:23;;;30501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36608:10:::1;36596:9;:22;;;;;;;;;;;;:::i;:::-;;36520:100:::0;:::o;37293:692::-;37367:11;33983:1;33969:11;:15;:52;;;;;34003:18;;33988:11;:33;;33969:52;33961:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;34096:9;;34081:11;34065:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;34057:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;37400:11:::1;34240:4;34216:28;;:20;;;;;;;;;;;:28;;;:46;;;;;34258:4;34248:14;;:6;;;;;;;;;;;:14;;;34216:46;34213:139;;;34315:11;34299:13;;:27;;;;:::i;:::-;34286:9;:40;;34278:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;34213:139;34375:5;34365:15;;:6;;;;;;;;;;;:15;;::::0;34362:105:::1;;34430:11;34417:10;;:24;;;;:::i;:::-;34404:9;:37;;34396:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;34362:105;37474:20:::2;;;;;;;;;;;37466:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37633:11;:25;37645:12;:10;:12::i;:::-;37633:25;;;;;;;;;;;;;;;;;;;;;;;;;37625:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;37747:11;37724:6;:20;37731:12;:10;:12::i;:::-;37724:20;;;;;;;;;;;;;;;;:34;;;;:::i;:::-;37701:6;:20;37708:12;:10;:12::i;:::-;37701:20;;;;;;;;;;;;;;;:57;;;;37808:18;;37784:6;:20;37791:12;:10;:12::i;:::-;37784:20;;;;;;;;;;;;;;;;:42;;37776:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;37875:11;37862:9;;:24;;;;;;;:::i;:::-;;;;;;;;37947:36;37957:12;:10;:12::i;:::-;37971:11;37947:9;:36::i;:::-;34141:1:::1;37293:692:::0;;:::o;33019:41::-;;;;:::o;30264:133::-;30310:7;30389:6;;;;;;;;;;;30382:13;;30264:133;:::o;33544:38::-;;;;:::o;13638:98::-;13694:13;13727:7;13720:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13638:98;:::o;36934:163::-;30520:12;:10;:12::i;:::-;30509:23;;:7;:5;:7::i;:::-;:23;;;30501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37007:11:::1;:18;37019:5;37007:18;;;;;;;;;;;;;;;;;;;;;;;;;37006:19;36998:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;37091:4;37070:11;:18;37082:5;37070:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;36934:163:::0;:::o;34726:414::-;34791:11;33983:1;33969:11;:15;:52;;;;;34003:18;;33988:11;:33;;33969:52;33961:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;34096:9;;34081:11;34065:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;34057:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;34824:11:::1;34240:4;34216:28;;:20;;;;;;;;;;;:28;;;:46;;;;;34258:4;34248:14;;:6;;;;;;;;;;;:14;;;34216:46;34213:139;;;34315:11;34299:13;;:27;;;;:::i;:::-;34286:9;:40;;34278:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;34213:139;34375:5;34365:15;;:6;;;;;;;;;;;:15;;::::0;34362:105:::1;;34430:11;34417:10;;:24;;;;:::i;:::-;34404:9;:37;;34396:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;34362:105;34857:6:::2;;;;;;;;;;;34856:7;34848:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;34948:11;34925:6;:20;34932:12;:10;:12::i;:::-;34925:20;;;;;;;;;;;;;;;;:34;;;;:::i;:::-;34902:6;:20;34909:12;:10;:12::i;:::-;34902:20;;;;;;;;;;;;;;;:57;;;;35009:18;;34985:6;:20;34992:12;:10;:12::i;:::-;34985:20;;;;;;;;;;;;;;;;:42;;34977:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;35076:11;35063:9;;:24;;;;;;;:::i;:::-;;;;;;;;35102:36;35112:12;:10;:12::i;:::-;35126:11;35102:9;:36::i;:::-;34141:1:::1;34726:414:::0;;:::o;15137:300::-;15248:19;:17;:19::i;:::-;15236:31;;:8;:31;;;15232:61;;15276:17;;;;;;;;;;;;;;15232:61;15356:8;15304:18;:39;15323:19;:17;:19::i;:::-;15304:39;;;;;;;;;;;;;;;:49;15344:8;15304:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;15416:8;15380:55;;15395:19;:17;:19::i;:::-;15380:55;;;15426:8;15380:55;;;;;;:::i;:::-;;;;;;;;15137:300;;:::o;33589:101::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;36242:130::-;30520:12;:10;:12::i;:::-;30509:23;;:7;:5;:7::i;:::-;:23;;;30501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36351:19:::1;36330:18;:40;;;;36242:130:::0;:::o;36821:105::-;30520:12;:10;:12::i;:::-;30509:23;;:7;:5;:7::i;:::-;:23;;;30501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36918:6:::1;36895:20;;:29;;;;;;;;;;;;;;;;;;36821:105:::0;:::o;15902:333::-;16026:28;16036:4;16042:2;16046:7;16026:9;:28::i;:::-;16087:1;16069:2;:14;;;:19;16065:169;;16108:56;16139:4;16145:2;16149:7;16158:5;16108:30;:56::i;:::-;16103:131;;16192:40;;;;;;;;;;;;;;16103:131;16065:169;15902:333;;;;:::o;35663:434::-;35737:13;35771:17;35779:8;35771:7;:17::i;:::-;35763:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;35867:5;35855:17;;:8;;;;;;;;;;;:17;;;35851:64;;35896:17;35889:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35851:64;35925:28;35956:10;:8;:10::i;:::-;35925:41;;36015:1;35990:14;35984:28;:32;:111;;;;;;;;;;;;;;;;;36043:14;36059:19;:8;:17;:19::i;:::-;36080:9;36026:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;35984:111;35977:118;;;35663:434;;;;:::o;33507:30::-;;;;:::o;33318:44::-;;;;;;;;;;;;;;;;;;;;;;:::o;36109:125::-;30520:12;:10;:12::i;:::-;30509:23;;:7;:5;:7::i;:::-;:23;;;30501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36226:6:::1;36215:8;;:17;;;;;;;;;;;;;;;;;;36109:125:::0;:::o;15445:158::-;15542:4;15566:18;:25;15585:5;15566:25;;;;;;;;;;;;;;;:35;15592:8;15566:35;;;;;;;;;;;;;;;;;;;;;;;;;15559:42;;15445:158;;;;:::o;35228:324::-;30520:12;:10;:12::i;:::-;30509:23;;:7;:5;:7::i;:::-;:23;;;30501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35359:9:::1;;35344:11;35328:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;35320:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;35495:11;35482:9;;:24;;;;;;;:::i;:::-;;;;;;;;35517:33;35527:9;35538:11;35517:9;:33::i;:::-;35228:324:::0;;:::o;30741:272::-;30520:12;:10;:12::i;:::-;30509:23;;:7;:5;:7::i;:::-;:23;;;30501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30927:1:::1;30907:22;;:8;:22;;::::0;30899:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;30983:28;31002:8;30983:18;:28::i;:::-;30741:272:::0;:::o;34610:108::-;30520:12;:10;:12::i;:::-;30509:23;;:7;:5;:7::i;:::-;:23;;;30501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34711:5:::1;34698:10;:18;;;;34610:108:::0;:::o;16283:188::-;16340:4;16383:7;16364:15;:13;:15::i;:::-;:26;;:53;;;;;16404:13;;16394:7;:23;16364:53;:105;;;;;16468:1;7240:8;16421:17;:26;16439:7;16421:26;;;;;;;;;;;;:43;:48;16364:105;16357:112;;16283:188;;;:::o;11545:1045::-;11612:7;11632:12;11647:7;11632:22;;11713:4;11694:15;:13;:15::i;:::-;:23;11690:849;;11747:13;;11740:4;:20;11736:803;;;11785:14;11802:17;:23;11820:4;11802:23;;;;;;;;;;;;11785:40;;11918:1;7240:8;11891:6;:23;:28;11887:651;;12410:87;12427:1;12417:6;:11;12410:87;;12470:17;:25;12488:6;;;;;;;12470:25;;;;;;;;;;;;12461:34;;12410:87;;;12530:6;12523:13;;;;;;11887:651;11762:777;11736:803;11690:849;12557:31;;;;;;;;;;;;;;11545:1045;;;;:::o;26923:99::-;26983:7;27010:10;27003:17;;26923:99;:::o;29748:92::-;29801:7;29828:10;29821:17;;29748:92;:::o;35560:95::-;35625:7;35652:1;35645:8;;35560:95;:::o;20522:2393::-;20603:27;20633;20652:7;20633:18;:27::i;:::-;20603:57;;20716:4;20675:45;;20691:19;20675:45;;;20671:86;;20729:28;;;;;;;;;;;;;;20671:86;20768:22;20817:4;20794:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;20838:43;20855:4;20861:19;:17;:19::i;:::-;20838:16;:43::i;:::-;20794:87;:147;;;;20922:19;:17;:19::i;:::-;20898:43;;:20;20910:7;20898:11;:20::i;:::-;:43;;;20794:147;20768:174;;20958:17;20953:66;;20984:35;;;;;;;;;;;;;;20953:66;21048:1;21034:16;;:2;:16;;;21030:52;;21059:23;;;;;;;;;;;;;;21030:52;21093:43;21115:4;21121:2;21125:7;21134:1;21093:21;:43::i;:::-;21207:15;:24;21223:7;21207:24;;;;;;;;;;;;21200:31;;;;;;;;;;;21597:18;:24;21616:4;21597:24;;;;;;;;;;;;;;;;21595:26;;;;;;;;;;;;21666:18;:22;21685:2;21666:22;;;;;;;;;;;;;;;;21664:24;;;;;;;;;;;7522:8;7124:3;22045:15;:41;;22003:21;22021:2;22003:17;:21::i;:::-;:84;:128;21957:17;:26;21975:7;21957:26;;;;;;;;;;;:174;;;;22299:1;7522:8;22249:19;:46;:51;22245:572;;22321:19;22353:1;22343:7;:11;22321:33;;22510:1;22476:17;:30;22494:11;22476:30;;;;;;;;;;;;:35;22472:344;;22614:13;;22599:11;:28;22595:220;;22794:19;22761:17;:30;22779:11;22761:30;;;;;;;;;;;:52;;;;22595:220;22472:344;22302:515;22245:572;22852:7;22848:2;22833:27;;22842:4;22833:27;;;;;;;;;;;;22871:42;22892:4;22898:2;22902:7;22911:1;22871:20;:42::i;:::-;20592:2323;;20522:2393;;;:::o;23085:2651::-;23165:27;23195;23214:7;23195:18;:27::i;:::-;23165:57;;23233:12;23264:19;23233:52;;23300:13;23296:265;;;23330:22;23379:4;23356:27;;:19;:17;:19::i;:::-;:27;;;:74;;;;23387:43;23404:4;23410:19;:17;:19::i;:::-;23387:16;:43::i;:::-;23356:74;:121;;;;23458:19;:17;:19::i;:::-;23434:43;;:20;23446:7;23434:11;:20::i;:::-;:43;;;23356:121;23330:148;;23498:17;23493:66;;23524:35;;;;;;;;;;;;;;23493:66;23315:246;23296:265;23571:51;23593:4;23607:1;23611:7;23620:1;23571:21;:51::i;:::-;23693:15;:24;23709:7;23693:24;;;;;;;;;;;;23686:31;;;;;;;;;;;24362:1;6733:3;24333:1;:25;;24332:31;24304:18;:24;24323:4;24304:24;;;;;;;;;;;;;;;;:59;;;;;;;;;;;7522:8;7240;7124:3;24689:15;:41;;24645:23;24663:4;24645:17;:23::i;:::-;:86;:120;:165;24599:17;:26;24617:7;24599:26;;;;;;;;;;;:211;;;;24978:1;7522:8;24928:19;:46;:51;24924:572;;25000:19;25032:1;25022:7;:11;25000:33;;25189:1;25155:17;:30;25173:11;25155:30;;;;;;;;;;;;:35;25151:344;;25293:13;;25278:11;:28;25274:220;;25473:19;25440:17;:30;25458:11;25440:30;;;;;;;;;;;:52;;;;25274:220;25151:344;24981:515;24924:572;25539:7;25535:1;25512:35;;25521:4;25512:35;;;;;;;;;;;;25558:50;25579:4;25593:1;25597:7;25606:1;25558:20;:50::i;:::-;25719:12;;:14;;;;;;;;;;;;;23154:2582;;23085:2651;;:::o;31021:262::-;31172:16;31191:6;;;;;;;;;;;31172:25;;31217:8;31208:6;;:17;;;;;;;;;;;;;;;;;;31272:8;31241:40;;31262:8;31241:40;;;;;;;;;;;;31084:199;31021:262;:::o;16530:98::-;16599:27;16609:2;16613:8;16599:27;;;;;;;;;;;;:9;:27::i;:::-;16530:98;;:::o;25835:583::-;25955:4;26001:2;25976:45;;;26022:19;:17;:19::i;:::-;26043:4;26049:7;26058:5;25976:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;25972:445;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26256:1;26239:6;:13;:18;26235:181;;26285:40;;;;;;;;;;;;;;26235:181;26406:6;26400:13;26391:6;26387:2;26383:15;26376:38;25972:445;26121:54;;;26111:64;;;:6;:64;;;;26104:71;;;25835:583;;;;;;:::o;38402:104::-;38462:13;38495:9;38488:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38402:104;:::o;31428:496::-;31484:13;31523:1;31514:5;:10;31510:43;;31541:10;;;;;;;;;;;;;;;;;;;;;31510:43;31563:12;31578:5;31563:20;;31594:14;31619:68;31634:1;31626:4;:9;31619:68;;31652:8;;;;;:::i;:::-;;;;31683:2;31675:10;;;;;:::i;:::-;;;31619:68;;;31697:19;31729:6;31719:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31697:39;;31747:144;31763:1;31754:5;:10;31747:144;;31791:1;31781:11;;;;;:::i;:::-;;;31858:2;31850:5;:10;;;;:::i;:::-;31837:2;:24;;;;:::i;:::-;31824:39;;31807:6;31814;31807:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;31887:2;31878:11;;;;;:::i;:::-;;;31747:144;;;31915:6;31901:21;;;;;31428:496;;;;:::o;26524:116::-;;;;;:::o;14201:132::-;14265:14;14326:5;14316:15;;14201:132;;;:::o;26739:115::-;;;;;:::o;16701:2104::-;16790:20;16813:13;;16790:36;;16855:1;16841:16;;:2;:16;;;16837:48;;16866:19;;;;;;;;;;;;;;16837:48;16912:1;16900:8;:13;16896:44;;16922:18;;;;;;;;;;;;;;16896:44;16951:61;16981:1;16985:2;16989:12;17003:8;16951:21;:61::i;:::-;17553:1;6607:2;17524:1;:25;;17523:31;17511:8;:44;17485:18;:22;17504:2;17485:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;7387:3;17952:29;17979:1;17967:8;:13;17952:14;:29::i;:::-;:56;;7124:3;17889:15;:41;;17847:21;17865:2;17847:17;:21::i;:::-;:84;:162;17796:17;:31;17814:12;17796:31;;;;;;;;;;;:213;;;;18024:20;18047:12;18024:35;;18074:11;18103:8;18088:12;:23;18074:37;;18148:1;18130:2;:14;;;:19;18126:563;;18170:291;18226:12;18222:2;18201:38;;18218:1;18201:38;;;;;;;;;;;;18267:69;18306:1;18310:2;18314:14;;;;;;18330:5;18267:30;:69::i;:::-;18262:152;;18372:40;;;;;;;;;;;;;;18262:152;18456:3;18441:12;:18;18170:291;;18542:12;18525:13;;:29;18521:43;;18556:8;;;18521:43;18126:563;;;18609:79;18643:14;;;;;;18639:2;18618:40;;18635:1;18618:40;;;;;;;;;;;;18683:3;18668:12;:18;18609:79;;18126:563;18719:12;18703:13;:28;;;;17262:1471;;18743:60;18772:1;18776:2;18780:12;18794:8;18743:20;:60::i;:::-;16779:2026;16701:2104;;;:::o;14341:126::-;14399:14;14460:5;14450:15;;14341:126;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;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:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:117::-;5047:1;5044;5037:12;5061:117;5170:1;5167;5160:12;5184:180;5232:77;5229:1;5222:88;5329:4;5326:1;5319:15;5353:4;5350:1;5343:15;5370:281;5453:27;5475:4;5453:27;:::i;:::-;5445:6;5441:40;5583:6;5571:10;5568:22;5547:18;5535:10;5532:34;5529:62;5526:88;;;5594:18;;:::i;:::-;5526:88;5634:10;5630:2;5623:22;5413:238;5370:281;;:::o;5657:129::-;5691:6;5718:20;;:::i;:::-;5708:30;;5747:33;5775:4;5767:6;5747:33;:::i;:::-;5657:129;;;:::o;5792:308::-;5854:4;5944:18;5936:6;5933:30;5930:56;;;5966:18;;:::i;:::-;5930:56;6004:29;6026:6;6004:29;:::i;:::-;5996:37;;6088:4;6082;6078:15;6070:23;;5792:308;;;:::o;6106:154::-;6190:6;6185:3;6180;6167:30;6252:1;6243:6;6238:3;6234:16;6227:27;6106:154;;;:::o;6266:412::-;6344:5;6369:66;6385:49;6427:6;6385:49;:::i;:::-;6369:66;:::i;:::-;6360:75;;6458:6;6451:5;6444:21;6496:4;6489:5;6485:16;6534:3;6525:6;6520:3;6516:16;6513:25;6510:112;;;6541:79;;:::i;:::-;6510:112;6631:41;6665:6;6660:3;6655;6631:41;:::i;:::-;6350:328;6266:412;;;;;:::o;6698:340::-;6754:5;6803:3;6796:4;6788:6;6784:17;6780:27;6770:122;;6811:79;;:::i;:::-;6770:122;6928:6;6915:20;6953:79;7028:3;7020:6;7013:4;7005:6;7001:17;6953:79;:::i;:::-;6944:88;;6760:278;6698:340;;;;:::o;7044:509::-;7113:6;7162:2;7150:9;7141:7;7137:23;7133:32;7130:119;;;7168:79;;:::i;:::-;7130:119;7316:1;7305:9;7301:17;7288:31;7346:18;7338:6;7335:30;7332:117;;;7368:79;;:::i;:::-;7332:117;7473:63;7528:7;7519:6;7508:9;7504:22;7473:63;:::i;:::-;7463:73;;7259:287;7044:509;;;;:::o;7559:116::-;7629:21;7644:5;7629:21;:::i;:::-;7622:5;7619:32;7609:60;;7665:1;7662;7655:12;7609:60;7559:116;:::o;7681:133::-;7724:5;7762:6;7749:20;7740:29;;7778:30;7802:5;7778:30;:::i;:::-;7681:133;;;;:::o;7820:323::-;7876:6;7925:2;7913:9;7904:7;7900:23;7896:32;7893:119;;;7931:79;;:::i;:::-;7893:119;8051:1;8076:50;8118:7;8109:6;8098:9;8094:22;8076:50;:::i;:::-;8066:60;;8022:114;7820:323;;;;:::o;8149:118::-;8236:24;8254:5;8236:24;:::i;:::-;8231:3;8224:37;8149:118;;:::o;8273:222::-;8366:4;8404:2;8393:9;8389:18;8381:26;;8417:71;8485:1;8474:9;8470:17;8461:6;8417:71;:::i;:::-;8273:222;;;;:::o;8501:329::-;8560:6;8609:2;8597:9;8588:7;8584:23;8580:32;8577:119;;;8615:79;;:::i;:::-;8577:119;8735:1;8760:53;8805:7;8796:6;8785:9;8781:22;8760:53;:::i;:::-;8750:63;;8706:117;8501:329;;;;:::o;8836:619::-;8913:6;8921;8929;8978:2;8966:9;8957:7;8953:23;8949:32;8946:119;;;8984:79;;:::i;:::-;8946:119;9104:1;9129:53;9174:7;9165:6;9154:9;9150:22;9129:53;:::i;:::-;9119:63;;9075:117;9231:2;9257:53;9302:7;9293:6;9282:9;9278:22;9257:53;:::i;:::-;9247:63;;9202:118;9359:2;9385:53;9430:7;9421:6;9410:9;9406:22;9385:53;:::i;:::-;9375:63;;9330:118;8836:619;;;;;:::o;9461:468::-;9526:6;9534;9583:2;9571:9;9562:7;9558:23;9554:32;9551:119;;;9589:79;;:::i;:::-;9551:119;9709:1;9734:53;9779:7;9770:6;9759:9;9755:22;9734:53;:::i;:::-;9724:63;;9680:117;9836:2;9862:50;9904:7;9895:6;9884:9;9880:22;9862:50;:::i;:::-;9852:60;;9807:115;9461:468;;;;;:::o;9935:307::-;9996:4;10086:18;10078:6;10075:30;10072:56;;;10108:18;;:::i;:::-;10072:56;10146:29;10168:6;10146:29;:::i;:::-;10138:37;;10230:4;10224;10220:15;10212:23;;9935:307;;;:::o;10248:410::-;10325:5;10350:65;10366:48;10407:6;10366:48;:::i;:::-;10350:65;:::i;:::-;10341:74;;10438:6;10431:5;10424:21;10476:4;10469:5;10465:16;10514:3;10505:6;10500:3;10496:16;10493:25;10490:112;;;10521:79;;:::i;:::-;10490:112;10611:41;10645:6;10640:3;10635;10611:41;:::i;:::-;10331:327;10248:410;;;;;:::o;10677:338::-;10732:5;10781:3;10774:4;10766:6;10762:17;10758:27;10748:122;;10789:79;;:::i;:::-;10748:122;10906:6;10893:20;10931:78;11005:3;10997:6;10990:4;10982:6;10978:17;10931:78;:::i;:::-;10922:87;;10738:277;10677:338;;;;:::o;11021:943::-;11116:6;11124;11132;11140;11189:3;11177:9;11168:7;11164:23;11160:33;11157:120;;;11196:79;;:::i;:::-;11157:120;11316:1;11341:53;11386:7;11377:6;11366:9;11362:22;11341:53;:::i;:::-;11331:63;;11287:117;11443:2;11469:53;11514:7;11505:6;11494:9;11490:22;11469:53;:::i;:::-;11459:63;;11414:118;11571:2;11597:53;11642:7;11633:6;11622:9;11618:22;11597:53;:::i;:::-;11587:63;;11542:118;11727:2;11716:9;11712:18;11699:32;11758:18;11750:6;11747:30;11744:117;;;11780:79;;:::i;:::-;11744:117;11885:62;11939:7;11930:6;11919:9;11915:22;11885:62;:::i;:::-;11875:72;;11670:287;11021:943;;;;;;;:::o;11970:474::-;12038:6;12046;12095:2;12083:9;12074:7;12070:23;12066:32;12063:119;;;12101:79;;:::i;:::-;12063:119;12221:1;12246:53;12291:7;12282:6;12271:9;12267:22;12246:53;:::i;:::-;12236:63;;12192:117;12348:2;12374:53;12419:7;12410:6;12399:9;12395:22;12374:53;:::i;:::-;12364:63;;12319:118;11970:474;;;;;:::o;12450:::-;12518:6;12526;12575:2;12563:9;12554:7;12550:23;12546:32;12543:119;;;12581:79;;:::i;:::-;12543:119;12701:1;12726:53;12771:7;12762:6;12751:9;12747:22;12726:53;:::i;:::-;12716:63;;12672:117;12828:2;12854:53;12899:7;12890:6;12879:9;12875:22;12854:53;:::i;:::-;12844:63;;12799:118;12450:474;;;;;:::o;12930:180::-;12978:77;12975:1;12968:88;13075:4;13072:1;13065:15;13099:4;13096:1;13089:15;13116:320;13160:6;13197:1;13191:4;13187:12;13177:22;;13244:1;13238:4;13234:12;13265:18;13255:81;;13321:4;13313:6;13309:17;13299:27;;13255:81;13383:2;13375:6;13372:14;13352:18;13349:38;13346:84;;13402:18;;:::i;:::-;13346:84;13167:269;13116:320;;;:::o;13442:182::-;13582:34;13578:1;13570:6;13566:14;13559:58;13442:182;:::o;13630:366::-;13772:3;13793:67;13857:2;13852:3;13793:67;:::i;:::-;13786:74;;13869:93;13958:3;13869:93;:::i;:::-;13987:2;13982:3;13978:12;13971:19;;13630:366;;;:::o;14002:419::-;14168:4;14206:2;14195:9;14191:18;14183:26;;14255:9;14249:4;14245:20;14241:1;14230:9;14226:17;14219:47;14283:131;14409:4;14283:131;:::i;:::-;14275:139;;14002:419;;;:::o;14427:180::-;14567:32;14563:1;14555:6;14551:14;14544:56;14427:180;:::o;14613:366::-;14755:3;14776:67;14840:2;14835:3;14776:67;:::i;:::-;14769:74;;14852:93;14941:3;14852:93;:::i;:::-;14970:2;14965:3;14961:12;14954:19;;14613:366;;;:::o;14985:419::-;15151:4;15189:2;15178:9;15174:18;15166:26;;15238:9;15232:4;15228:20;15224:1;15213:9;15209:17;15202:47;15266:131;15392:4;15266:131;:::i;:::-;15258:139;;14985:419;;;:::o;15410:181::-;15550:33;15546:1;15538:6;15534:14;15527:57;15410:181;:::o;15597:366::-;15739:3;15760:67;15824:2;15819:3;15760:67;:::i;:::-;15753:74;;15836:93;15925:3;15836:93;:::i;:::-;15954:2;15949:3;15945:12;15938:19;;15597:366;;;:::o;15969:419::-;16135:4;16173:2;16162:9;16158:18;16150:26;;16222:9;16216:4;16212:20;16208:1;16197:9;16193:17;16186:47;16250:131;16376:4;16250:131;:::i;:::-;16242:139;;15969:419;;;:::o;16394:147::-;16495:11;16532:3;16517:18;;16394:147;;;;:::o;16547:114::-;;:::o;16667:398::-;16826:3;16847:83;16928:1;16923:3;16847:83;:::i;:::-;16840:90;;16939:93;17028:3;16939:93;:::i;:::-;17057:1;17052:3;17048:11;17041:18;;16667:398;;;:::o;17071:379::-;17255:3;17277:147;17420:3;17277:147;:::i;:::-;17270:154;;17441:3;17434:10;;17071:379;;;:::o;17456:170::-;17596:22;17592:1;17584:6;17580:14;17573:46;17456:170;:::o;17632:366::-;17774:3;17795:67;17859:2;17854:3;17795:67;:::i;:::-;17788:74;;17871:93;17960:3;17871:93;:::i;:::-;17989:2;17984:3;17980:12;17973:19;;17632:366;;;:::o;18004:419::-;18170:4;18208:2;18197:9;18193:18;18185:26;;18257:9;18251:4;18247:20;18243:1;18232:9;18228:17;18221:47;18285:131;18411:4;18285:131;:::i;:::-;18277:139;;18004:419;;;:::o;18429:180::-;18477:77;18474:1;18467:88;18574:4;18571:1;18564:15;18598:4;18595:1;18588:15;18615:305;18655:3;18674:20;18692:1;18674:20;:::i;:::-;18669:25;;18708:20;18726:1;18708:20;:::i;:::-;18703:25;;18862:1;18794:66;18790:74;18787:1;18784:81;18781:107;;;18868:18;;:::i;:::-;18781:107;18912:1;18909;18905:9;18898:16;;18615:305;;;;:::o;18926:170::-;19066:22;19062:1;19054:6;19050:14;19043:46;18926:170;:::o;19102:366::-;19244:3;19265:67;19329:2;19324:3;19265:67;:::i;:::-;19258:74;;19341:93;19430:3;19341:93;:::i;:::-;19459:2;19454:3;19450:12;19443:19;;19102:366;;;:::o;19474:419::-;19640:4;19678:2;19667:9;19663:18;19655:26;;19727:9;19721:4;19717:20;19713:1;19702:9;19698:17;19691:47;19755:131;19881:4;19755:131;:::i;:::-;19747:139;;19474:419;;;:::o;19899:348::-;19939:7;19962:20;19980:1;19962:20;:::i;:::-;19957:25;;19996:20;20014:1;19996:20;:::i;:::-;19991:25;;20184:1;20116:66;20112:74;20109:1;20106:81;20101:1;20094:9;20087:17;20083:105;20080:131;;;20191:18;;:::i;:::-;20080:131;20239:1;20236;20232:9;20221:20;;19899:348;;;;:::o;20253:169::-;20393:21;20389:1;20381:6;20377:14;20370:45;20253:169;:::o;20428:366::-;20570:3;20591:67;20655:2;20650:3;20591:67;:::i;:::-;20584:74;;20667:93;20756:3;20667:93;:::i;:::-;20785:2;20780:3;20776:12;20769:19;;20428:366;;;:::o;20800:419::-;20966:4;21004:2;20993:9;20989:18;20981:26;;21053:9;21047:4;21043:20;21039:1;21028:9;21024:17;21017:47;21081:131;21207:4;21081:131;:::i;:::-;21073:139;;20800:419;;;:::o;21225:221::-;21365:34;21361:1;21353:6;21349:14;21342:58;21434:4;21429:2;21421:6;21417:15;21410:29;21225:221;:::o;21452:366::-;21594:3;21615:67;21679:2;21674:3;21615:67;:::i;:::-;21608:74;;21691:93;21780:3;21691:93;:::i;:::-;21809:2;21804:3;21800:12;21793:19;;21452:366;;;:::o;21824:419::-;21990:4;22028:2;22017:9;22013:18;22005:26;;22077:9;22071:4;22067:20;22063:1;22052:9;22048:17;22041:47;22105:131;22231:4;22105:131;:::i;:::-;22097:139;;21824:419;;;:::o;22249:177::-;22389:29;22385:1;22377:6;22373:14;22366:53;22249:177;:::o;22432:366::-;22574:3;22595:67;22659:2;22654:3;22595:67;:::i;:::-;22588:74;;22671:93;22760:3;22671:93;:::i;:::-;22789:2;22784:3;22780:12;22773:19;;22432:366;;;:::o;22804:419::-;22970:4;23008:2;22997:9;22993:18;22985:26;;23057:9;23051:4;23047:20;23043:1;23032:9;23028:17;23021:47;23085:131;23211:4;23085:131;:::i;:::-;23077:139;;22804:419;;;:::o;23229:170::-;23369:22;23365:1;23357:6;23353:14;23346:46;23229:170;:::o;23405:366::-;23547:3;23568:67;23632:2;23627:3;23568:67;:::i;:::-;23561:74;;23644:93;23733:3;23644:93;:::i;:::-;23762:2;23757:3;23753:12;23746:19;;23405:366;;;:::o;23777:419::-;23943:4;23981:2;23970:9;23966:18;23958:26;;24030:9;24024:4;24020:20;24016:1;24005:9;24001:17;23994:47;24058:131;24184:4;24058:131;:::i;:::-;24050:139;;23777:419;;;:::o;24202:179::-;24342:31;24338:1;24330:6;24326:14;24319:55;24202:179;:::o;24387:366::-;24529:3;24550:67;24614:2;24609:3;24550:67;:::i;:::-;24543:74;;24626:93;24715:3;24626:93;:::i;:::-;24744:2;24739:3;24735:12;24728:19;;24387:366;;;:::o;24759:419::-;24925:4;24963:2;24952:9;24948:18;24940:26;;25012:9;25006:4;25002:20;24998:1;24987:9;24983:17;24976:47;25040:131;25166:4;25040:131;:::i;:::-;25032:139;;24759:419;;;:::o;25184:173::-;25324:25;25320:1;25312:6;25308:14;25301:49;25184:173;:::o;25363:366::-;25505:3;25526:67;25590:2;25585:3;25526:67;:::i;:::-;25519:74;;25602:93;25691:3;25602:93;:::i;:::-;25720:2;25715:3;25711:12;25704:19;;25363:366;;;:::o;25735:419::-;25901:4;25939:2;25928:9;25924:18;25916:26;;25988:9;25982:4;25978:20;25974:1;25963:9;25959:17;25952:47;26016:131;26142:4;26016:131;:::i;:::-;26008:139;;25735:419;;;:::o;26160:234::-;26300:34;26296:1;26288:6;26284:14;26277:58;26369:17;26364:2;26356:6;26352:15;26345:42;26160:234;:::o;26400:366::-;26542:3;26563:67;26627:2;26622:3;26563:67;:::i;:::-;26556:74;;26639:93;26728:3;26639:93;:::i;:::-;26757:2;26752:3;26748:12;26741:19;;26400:366;;;:::o;26772:419::-;26938:4;26976:2;26965:9;26961:18;26953:26;;27025:9;27019:4;27015:20;27011:1;27000:9;26996:17;26989:47;27053:131;27179:4;27053:131;:::i;:::-;27045:139;;26772:419;;;:::o;27197:148::-;27299:11;27336:3;27321:18;;27197:148;;;;:::o;27351:377::-;27457:3;27485:39;27518:5;27485:39;:::i;:::-;27540:89;27622:6;27617:3;27540:89;:::i;:::-;27533:96;;27638:52;27683:6;27678:3;27671:4;27664:5;27660:16;27638:52;:::i;:::-;27715:6;27710:3;27706:16;27699:23;;27461:267;27351:377;;;;:::o;27734:141::-;27783:4;27806:3;27798:11;;27829:3;27826:1;27819:14;27863:4;27860:1;27850:18;27842:26;;27734:141;;;:::o;27905:845::-;28008:3;28045:5;28039:12;28074:36;28100:9;28074:36;:::i;:::-;28126:89;28208:6;28203:3;28126:89;:::i;:::-;28119:96;;28246:1;28235:9;28231:17;28262:1;28257:137;;;;28408:1;28403:341;;;;28224:520;;28257:137;28341:4;28337:9;28326;28322:25;28317:3;28310:38;28377:6;28372:3;28368:16;28361:23;;28257:137;;28403:341;28470:38;28502:5;28470:38;:::i;:::-;28530:1;28544:154;28558:6;28555:1;28552:13;28544:154;;;28632:7;28626:14;28622:1;28617:3;28613:11;28606:35;28682:1;28673:7;28669:15;28658:26;;28580:4;28577:1;28573:12;28568:17;;28544:154;;;28727:6;28722:3;28718:16;28711:23;;28410:334;;28224:520;;28012:738;;27905:845;;;;:::o;28756:589::-;28981:3;29003:95;29094:3;29085:6;29003:95;:::i;:::-;28996:102;;29115:95;29206:3;29197:6;29115:95;:::i;:::-;29108:102;;29227:92;29315:3;29306:6;29227:92;:::i;:::-;29220:99;;29336:3;29329:10;;28756:589;;;;;;:::o;29351:225::-;29491:34;29487:1;29479:6;29475:14;29468:58;29560:8;29555:2;29547:6;29543:15;29536:33;29351:225;:::o;29582:366::-;29724:3;29745:67;29809:2;29804:3;29745:67;:::i;:::-;29738:74;;29821:93;29910:3;29821:93;:::i;:::-;29939:2;29934:3;29930:12;29923:19;;29582:366;;;:::o;29954:419::-;30120:4;30158:2;30147:9;30143:18;30135:26;;30207:9;30201:4;30197:20;30193:1;30182:9;30178:17;30171:47;30235:131;30361:4;30235:131;:::i;:::-;30227:139;;29954:419;;;:::o;30379:98::-;30430:6;30464:5;30458:12;30448:22;;30379:98;;;:::o;30483:168::-;30566:11;30600:6;30595:3;30588:19;30640:4;30635:3;30631:14;30616:29;;30483:168;;;;:::o;30657:360::-;30743:3;30771:38;30803:5;30771:38;:::i;:::-;30825:70;30888:6;30883:3;30825:70;:::i;:::-;30818:77;;30904:52;30949:6;30944:3;30937:4;30930:5;30926:16;30904:52;:::i;:::-;30981:29;31003:6;30981:29;:::i;:::-;30976:3;30972:39;30965:46;;30747:270;30657:360;;;;:::o;31023:640::-;31218:4;31256:3;31245:9;31241:19;31233:27;;31270:71;31338:1;31327:9;31323:17;31314:6;31270:71;:::i;:::-;31351:72;31419:2;31408:9;31404:18;31395:6;31351:72;:::i;:::-;31433;31501:2;31490:9;31486:18;31477:6;31433:72;:::i;:::-;31552:9;31546:4;31542:20;31537:2;31526:9;31522:18;31515:48;31580:76;31651:4;31642:6;31580:76;:::i;:::-;31572:84;;31023:640;;;;;;;:::o;31669:141::-;31725:5;31756:6;31750:13;31741:22;;31772:32;31798:5;31772:32;:::i;:::-;31669:141;;;;:::o;31816:349::-;31885:6;31934:2;31922:9;31913:7;31909:23;31905:32;31902:119;;;31940:79;;:::i;:::-;31902:119;32060:1;32085:63;32140:7;32131:6;32120:9;32116:22;32085:63;:::i;:::-;32075:73;;32031:127;31816:349;;;;:::o;32171:233::-;32210:3;32233:24;32251:5;32233:24;:::i;:::-;32224:33;;32279:66;32272:5;32269:77;32266:103;;32349:18;;:::i;:::-;32266:103;32396:1;32389:5;32385:13;32378:20;;32171:233;;;:::o;32410:180::-;32458:77;32455:1;32448:88;32555:4;32552:1;32545:15;32579:4;32576:1;32569:15;32596:185;32636:1;32653:20;32671:1;32653:20;:::i;:::-;32648:25;;32687:20;32705:1;32687:20;:::i;:::-;32682:25;;32726:1;32716:35;;32731:18;;:::i;:::-;32716:35;32773:1;32770;32766:9;32761:14;;32596:185;;;;:::o;32787:191::-;32827:4;32847:20;32865:1;32847:20;:::i;:::-;32842:25;;32881:20;32899:1;32881:20;:::i;:::-;32876:25;;32920:1;32917;32914:8;32911:34;;;32925:18;;:::i;:::-;32911:34;32970:1;32967;32963:9;32955:17;;32787:191;;;;:::o;32984:176::-;33016:1;33033:20;33051:1;33033:20;:::i;:::-;33028:25;;33067:20;33085:1;33067:20;:::i;:::-;33062:25;;33106:1;33096:35;;33111:18;;:::i;:::-;33096:35;33152:1;33149;33145:9;33140:14;;32984:176;;;;:::o;33166:180::-;33214:77;33211:1;33204:88;33311:4;33308:1;33301:15;33335:4;33332:1;33325:15

Swarm Source

ipfs://dc41e260baa8c14630e5da2b1c38fb8ca5a4fd1976849931765da3585bb5ae5d
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ 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.