ETH Price: $2,606.84 (-0.56%)

Contract

0x3b938E9525e14361091ee464D8AceC291b3caE50
 
Transaction Hash
Method
Block
From
To
Withdraw208021032024-09-21 23:02:3525 days ago1726959755IN
DUSD
0 ETH0.000287994.62524107
Withdraw207889722024-09-20 2:58:5927 days ago1726801139IN
DUSD
0 ETH0.000322734.06771846
Register Withdra...207807152024-09-18 23:19:3528 days ago1726701575IN
DUSD
0 ETH0.000171913.68930326
Set Signer197510352024-04-28 3:08:35172 days ago1714273715IN
DUSD
0 ETH0.000204527.01903894
Set Signer197474912024-04-27 15:14:23173 days ago1714230863IN
DUSD
0 ETH0.000219327.52698084
Withdraw197474862024-04-27 15:13:23173 days ago1714230803IN
DUSD
0 ETH0.000619857.81451773
Withdraw197474822024-04-27 15:12:35173 days ago1714230755IN
DUSD
0 ETH0.000488687.35012397
Set Signer197473842024-04-27 14:52:59173 days ago1714229579IN
DUSD
0 ETH0.00020326.97372269
Withdraw193657842024-03-05 1:48:59226 days ago1709603339IN
DUSD
0 ETH0.0048267477.53441213
Set Allowance182272162023-09-27 12:52:47386 days ago1695819167IN
DUSD
0 ETH0.0014300211.13808315
Withdraw182271652023-09-27 12:42:35386 days ago1695818555IN
DUSD
0 ETH0.0013135615.93217996
Set Allowance182271422023-09-27 12:37:59386 days ago1695818279IN
DUSD
0 ETH0.0009275813.32972918
Withdraw182271392023-09-27 12:37:23386 days ago1695818243IN
DUSD
0 ETH0.0010068212.1620268
Set Allowance182271372023-09-27 12:36:59386 days ago1695818219IN
DUSD
0 ETH0.0008779212.57237322
Burn Im BTC180744582023-09-06 2:32:11407 days ago1693967531IN
DUSD
0 ETH0.0009542413.29591202
Burn Im BTC180034002023-08-27 3:44:47417 days ago1693107887IN
DUSD
0 ETH0.0007689610.71429786
Burn Im BTC178805262023-08-09 23:09:59434 days ago1691622599IN
DUSD
0 ETH0.0009778713.6250918
Burn Im BTC177744252023-07-26 2:58:35449 days ago1690340315IN
DUSD
0 ETH0.0012605217.56340461
Burn Im BTC176530012023-07-09 1:49:59466 days ago1688867399IN
DUSD
0 ETH0.0009671413.47562601
Burn Im BTC175504762023-06-24 16:09:59481 days ago1687622999IN
DUSD
0 ETH0.0017029523.72793375
Burn Im BTC175504512023-06-24 16:04:47481 days ago1687622687IN
DUSD
0 ETH0.0023206732.33493489
Burn Im BTC174396962023-06-09 2:24:35496 days ago1686277475IN
DUSD
0 ETH0.0014691220.4699055
Burn Im BTC173489732023-05-27 7:41:35509 days ago1685173295IN
DUSD
0 ETH0.0017310424.1193902
Burn Im BTC171432962023-04-28 7:59:47538 days ago1682668787IN
DUSD
0 ETH0.0025342935.31140719
Burn Im BTC169250382023-03-28 9:47:11569 days ago1679996831IN
DUSD
0 ETH0.0018285725.47831362
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
MarketMakerProxy

Compiler Version
v0.5.7+commit.6da8b019

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-08-10
*/

// File: contract-utils/Ownable/IOwnable.sol

pragma solidity ^0.5.0;

contract IOwnable {
  function transferOwnership(address newOwner) public;

  function setOperator(address newOwner) public;
}

// File: contract-utils/Ownable/Ownable.sol

pragma solidity ^0.5.0;



contract Ownable is
  IOwnable
{
  address public owner;
  address public operator;

  constructor ()
    public
  {
    owner = msg.sender;
  }

  modifier onlyOwner() {
    require(
      msg.sender == owner,
      "ONLY_CONTRACT_OWNER"
    );
    _;
  }

  modifier onlyOperator() {
    require(
      msg.sender == operator,
      "ONLY_CONTRACT_OPERATOR"
    );
    _;
  }

  function transferOwnership(address newOwner)
    public
    onlyOwner
  {
    if (newOwner != address(0)) {
      owner = newOwner;
    }
  }

  function setOperator(address newOperator)
    public
    onlyOwner 
  {
    operator = newOperator;
  }
}

// File: contract-utils/Weth/IWeth.sol

pragma solidity ^0.5.0;

contract IWeth {
    function deposit() public payable;
    function withdraw(uint256 amount) public;
}

// File: contract-utils/Weth/LibWeth.sol

pragma solidity ^0.5.0;


contract LibWeth 
{
    function convertETHtoWeth(address wethAddr, uint256 amount) internal {
        IWeth weth = IWeth(wethAddr);
        weth.deposit.value(amount)();
    }

    function convertWethtoETH(address wethAddr, uint256 amount) internal {
        IWeth weth = IWeth(wethAddr);
        weth.withdraw(amount);
    }
}

// File: contract-utils/Interface/ITokenlonExchange.sol

pragma solidity ^0.5.0;

contract ITokenlonExchange {
    function transactions(bytes32 executeTxHash) external returns (address);
}

// File: contract-utils/Zerox/LibEIP712.sol

/*

  Copyright 2018 ZeroEx Intl.

  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.

*/

pragma solidity ^0.5.0;


contract LibEIP712 {

    // EIP191 header for EIP712 prefix
    string constant internal EIP191_HEADER = "\x19\x01";

    // EIP712 Domain Name value
    string constant internal EIP712_DOMAIN_NAME = "0x Protocol";

    // EIP712 Domain Version value
    string constant internal EIP712_DOMAIN_VERSION = "2";

    // Hash of the EIP712 Domain Separator Schema
    bytes32 constant internal EIP712_DOMAIN_SEPARATOR_SCHEMA_HASH = keccak256(abi.encodePacked(
        "EIP712Domain(",
        "string name,",
        "string version,",
        "address verifyingContract",
        ")"
    ));

    // Hash of the EIP712 Domain Separator data
    // solhint-disable-next-line var-name-mixedcase
    bytes32 public EIP712_DOMAIN_HASH;

    constructor ()
        public
    {
        EIP712_DOMAIN_HASH = keccak256(abi.encodePacked(
            EIP712_DOMAIN_SEPARATOR_SCHEMA_HASH,
            keccak256(bytes(EIP712_DOMAIN_NAME)),
            keccak256(bytes(EIP712_DOMAIN_VERSION)),
            bytes12(0),
            address(this)
        ));
    }

    /// @dev Calculates EIP712 encoding for a hash struct in this EIP712 Domain.
    /// @param hashStruct The EIP712 hash struct.
    /// @return EIP712 hash applied to this EIP712 Domain.
    function hashEIP712Message(bytes32 hashStruct)
        internal
        view
        returns (bytes32 result)
    {
        bytes32 eip712DomainHash = EIP712_DOMAIN_HASH;

        // Assembly for more efficient computing:
        // keccak256(abi.encodePacked(
        //     EIP191_HEADER,
        //     EIP712_DOMAIN_HASH,
        //     hashStruct    
        // ));

        assembly {
            // Load free memory pointer
            let memPtr := mload(64)

            mstore(memPtr, 0x1901000000000000000000000000000000000000000000000000000000000000)  // EIP191 header
            mstore(add(memPtr, 2), eip712DomainHash)                                            // EIP712 domain hash
            mstore(add(memPtr, 34), hashStruct)                                                 // Hash of struct

            // Compute hash
            result := keccak256(memPtr, 66)
        }
        return result;
    }
}

// File: contract-utils/Zerox/LibOrder.sol

/*

  Copyright 2018 ZeroEx Intl.

  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.

*/

pragma solidity ^0.5.0;



contract LibOrder is
    LibEIP712
{
    // Hash for the EIP712 Order Schema
    bytes32 constant internal EIP712_ORDER_SCHEMA_HASH = keccak256(abi.encodePacked(
        "Order(",
        "address makerAddress,",
        "address takerAddress,",
        "address feeRecipientAddress,",
        "address senderAddress,",
        "uint256 makerAssetAmount,",
        "uint256 takerAssetAmount,",
        "uint256 makerFee,",
        "uint256 takerFee,",
        "uint256 expirationTimeSeconds,",
        "uint256 salt,",
        "bytes makerAssetData,",
        "bytes takerAssetData",
        ")"
    ));

    // A valid order remains fillable until it is expired, fully filled, or cancelled.
    // An order's state is unaffected by external factors, like account balances.
    enum OrderStatus {
        INVALID,                     // Default value
        INVALID_MAKER_ASSET_AMOUNT,  // Order does not have a valid maker asset amount
        INVALID_TAKER_ASSET_AMOUNT,  // Order does not have a valid taker asset amount
        FILLABLE,                    // Order is fillable
        EXPIRED,                     // Order has already expired
        FULLY_FILLED,                // Order is fully filled
        CANCELLED                    // Order has been cancelled
    }

    // solhint-disable max-line-length
    struct Order {
        address makerAddress;           // Address that created the order.      
        address takerAddress;           // Address that is allowed to fill the order. If set to 0, any address is allowed to fill the order.          
        address feeRecipientAddress;    // Address that will recieve fees when order is filled.      
        address senderAddress;          // Address that is allowed to call Exchange contract methods that affect this order. If set to 0, any address is allowed to call these methods.
        uint256 makerAssetAmount;       // Amount of makerAsset being offered by maker. Must be greater than 0.        
        uint256 takerAssetAmount;       // Amount of takerAsset being bid on by maker. Must be greater than 0.        
        uint256 makerFee;               // Amount of ZRX paid to feeRecipient by maker when order is filled. If set to 0, no transfer of ZRX from maker to feeRecipient will be attempted.
        uint256 takerFee;               // Amount of ZRX paid to feeRecipient by taker when order is filled. If set to 0, no transfer of ZRX from taker to feeRecipient will be attempted.
        uint256 expirationTimeSeconds;  // Timestamp in seconds at which order expires.          
        uint256 salt;                   // Arbitrary number to facilitate uniqueness of the order's hash.     
        bytes makerAssetData;           // Encoded data that can be decoded by a specified proxy contract when transferring makerAsset. The last byte references the id of this proxy.
        bytes takerAssetData;           // Encoded data that can be decoded by a specified proxy contract when transferring takerAsset. The last byte references the id of this proxy.
    }
    // solhint-enable max-line-length

    struct OrderInfo {
        uint8 orderStatus;                    // Status that describes order's validity and fillability.
        bytes32 orderHash;                    // EIP712 hash of the order (see LibOrder.getOrderHash).
        uint256 orderTakerAssetFilledAmount;  // Amount of order that has already been filled.
    }

    /// @dev Calculates Keccak-256 hash of the order.
    /// @param order The order structure.
    /// @return Keccak-256 EIP712 hash of the order.
    function getOrderHash(Order memory order)
        internal
        view
        returns (bytes32 orderHash)
    {
        orderHash = hashEIP712Message(hashOrder(order));
        return orderHash;
    }

    /// @dev Calculates EIP712 hash of the order.
    /// @param order The order structure.
    /// @return EIP712 hash of the order.
    function hashOrder(Order memory order)
        internal
        pure
        returns (bytes32 result)
    {
        bytes32 schemaHash = EIP712_ORDER_SCHEMA_HASH;
        bytes32 makerAssetDataHash = keccak256(order.makerAssetData);
        bytes32 takerAssetDataHash = keccak256(order.takerAssetData);

        // Assembly for more efficiently computing:
        // keccak256(abi.encodePacked(
        //     EIP712_ORDER_SCHEMA_HASH,
        //     bytes32(order.makerAddress),
        //     bytes32(order.takerAddress),
        //     bytes32(order.feeRecipientAddress),
        //     bytes32(order.senderAddress),
        //     order.makerAssetAmount,
        //     order.takerAssetAmount,
        //     order.makerFee,
        //     order.takerFee,
        //     order.expirationTimeSeconds,
        //     order.salt,
        //     keccak256(order.makerAssetData),
        //     keccak256(order.takerAssetData)
        // ));

        assembly {
            // Calculate memory addresses that will be swapped out before hashing
            let pos1 := sub(order, 32)
            let pos2 := add(order, 320)
            let pos3 := add(order, 352)

            // Backup
            let temp1 := mload(pos1)
            let temp2 := mload(pos2)
            let temp3 := mload(pos3)
            
            // Hash in place
            mstore(pos1, schemaHash)
            mstore(pos2, makerAssetDataHash)
            mstore(pos3, takerAssetDataHash)
            result := keccak256(pos1, 416)
            
            // Restore
            mstore(pos1, temp1)
            mstore(pos2, temp2)
            mstore(pos3, temp3)
        }
        return result;
    }
}

// File: contract-utils/Zerox/LibBytes.sol

/*

  Copyright 2018 ZeroEx Intl.

  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.

*/

pragma solidity ^0.5.0;


library LibBytes {

    using LibBytes for bytes;

    /// @dev Gets the memory address for a byte array.
    /// @param input Byte array to lookup.
    /// @return memoryAddress Memory address of byte array. This
    ///         points to the header of the byte array which contains
    ///         the length.
    function rawAddress(bytes memory input)
        internal
        pure
        returns (uint256 memoryAddress)
    {
        assembly {
            memoryAddress := input
        }
        return memoryAddress;
    }
    
    /// @dev Gets the memory address for the contents of a byte array.
    /// @param input Byte array to lookup.
    /// @return memoryAddress Memory address of the contents of the byte array.
    function contentAddress(bytes memory input)
        internal
        pure
        returns (uint256 memoryAddress)
    {
        assembly {
            memoryAddress := add(input, 32)
        }
        return memoryAddress;
    }

    /// @dev Copies `length` bytes from memory location `source` to `dest`.
    /// @param dest memory address to copy bytes to.
    /// @param source memory address to copy bytes from.
    /// @param length number of bytes to copy.
    function memCopy(
        uint256 dest,
        uint256 source,
        uint256 length
    )
        internal
        pure
    {
        if (length < 32) {
            // Handle a partial word by reading destination and masking
            // off the bits we are interested in.
            // This correctly handles overlap, zero lengths and source == dest
            assembly {
                let mask := sub(exp(256, sub(32, length)), 1)
                let s := and(mload(source), not(mask))
                let d := and(mload(dest), mask)
                mstore(dest, or(s, d))
            }
        } else {
            // Skip the O(length) loop when source == dest.
            if (source == dest) {
                return;
            }

            // For large copies we copy whole words at a time. The final
            // word is aligned to the end of the range (instead of after the
            // previous) to handle partial words. So a copy will look like this:
            //
            //  ####
            //      ####
            //          ####
            //            ####
            //
            // We handle overlap in the source and destination range by
            // changing the copying direction. This prevents us from
            // overwriting parts of source that we still need to copy.
            //
            // This correctly handles source == dest
            //
            if (source > dest) {
                assembly {
                    // We subtract 32 from `sEnd` and `dEnd` because it
                    // is easier to compare with in the loop, and these
                    // are also the addresses we need for copying the
                    // last bytes.
                    length := sub(length, 32)
                    let sEnd := add(source, length)
                    let dEnd := add(dest, length)

                    // Remember the last 32 bytes of source
                    // This needs to be done here and not after the loop
                    // because we may have overwritten the last bytes in
                    // source already due to overlap.
                    let last := mload(sEnd)

                    // Copy whole words front to back
                    // Note: the first check is always true,
                    // this could have been a do-while loop.
                    // solhint-disable-next-line no-empty-blocks
                    for {} lt(source, sEnd) {} {
                        mstore(dest, mload(source))
                        source := add(source, 32)
                        dest := add(dest, 32)
                    }
                    
                    // Write the last 32 bytes
                    mstore(dEnd, last)
                }
            } else {
                assembly {
                    // We subtract 32 from `sEnd` and `dEnd` because those
                    // are the starting points when copying a word at the end.
                    length := sub(length, 32)
                    let sEnd := add(source, length)
                    let dEnd := add(dest, length)

                    // Remember the first 32 bytes of source
                    // This needs to be done here and not after the loop
                    // because we may have overwritten the first bytes in
                    // source already due to overlap.
                    let first := mload(source)

                    // Copy whole words back to front
                    // We use a signed comparisson here to allow dEnd to become
                    // negative (happens when source and dest < 32). Valid
                    // addresses in local memory will never be larger than
                    // 2**255, so they can be safely re-interpreted as signed.
                    // Note: the first check is always true,
                    // this could have been a do-while loop.
                    // solhint-disable-next-line no-empty-blocks
                    for {} slt(dest, dEnd) {} {
                        mstore(dEnd, mload(sEnd))
                        sEnd := sub(sEnd, 32)
                        dEnd := sub(dEnd, 32)
                    }
                    
                    // Write the first 32 bytes
                    mstore(dest, first)
                }
            }
        }
    }

    /// @dev Returns a slices from a byte array.
    /// @param b The byte array to take a slice from.
    /// @param from The starting index for the slice (inclusive).
    /// @param to The final index for the slice (exclusive).
    /// @return result The slice containing bytes at indices [from, to)
    function slice(
        bytes memory b,
        uint256 from,
        uint256 to
    )
        internal
        pure
        returns (bytes memory result)
    {
        require(
            from <= to,
            "FROM_LESS_THAN_TO_REQUIRED"
        );
        require(
            to < b.length,
            "TO_LESS_THAN_LENGTH_REQUIRED"
        );
        
        // Create a new bytes structure and copy contents
        result = new bytes(to - from);
        memCopy(
            result.contentAddress(),
            b.contentAddress() + from,
            result.length
        );
        return result;
    }
    
    /// @dev Returns a slice from a byte array without preserving the input.
    /// @param b The byte array to take a slice from. Will be destroyed in the process.
    /// @param from The starting index for the slice (inclusive).
    /// @param to The final index for the slice (exclusive).
    /// @return result The slice containing bytes at indices [from, to)
    /// @dev When `from == 0`, the original array will match the slice. In other cases its state will be corrupted.
    function sliceDestructive(
        bytes memory b,
        uint256 from,
        uint256 to
    )
        internal
        pure
        returns (bytes memory result)
    {
        require(
            from <= to,
            "FROM_LESS_THAN_TO_REQUIRED"
        );
        require(
            to < b.length,
            "TO_LESS_THAN_LENGTH_REQUIRED"
        );
        
        // Create a new bytes structure around [from, to) in-place.
        assembly {
            result := add(b, from)
            mstore(result, sub(to, from))
        }
        return result;
    }

    /// @dev Pops the last byte off of a byte array by modifying its length.
    /// @param b Byte array that will be modified.
    /// @return The byte that was popped off.
    function popLastByte(bytes memory b)
        internal
        pure
        returns (bytes1 result)
    {
        require(
            b.length > 0,
            "GREATER_THAN_ZERO_LENGTH_REQUIRED"
        );

        // Store last byte.
        result = b[b.length - 1];

        assembly {
            // Decrement length of byte array.
            let newLen := sub(mload(b), 1)
            mstore(b, newLen)
        }
        return result;
    }

    /// @dev Pops the last 20 bytes off of a byte array by modifying its length.
    /// @param b Byte array that will be modified.
    /// @return The 20 byte address that was popped off.
    function popLast20Bytes(bytes memory b)
        internal
        pure
        returns (address result)
    {
        require(
            b.length >= 20,
            "GREATER_OR_EQUAL_TO_20_LENGTH_REQUIRED"
        );

        // Store last 20 bytes.
        result = readAddress(b, b.length - 20);

        assembly {
            // Subtract 20 from byte array length.
            let newLen := sub(mload(b), 20)
            mstore(b, newLen)
        }
        return result;
    }

    /// @dev Tests equality of two byte arrays.
    /// @param lhs First byte array to compare.
    /// @param rhs Second byte array to compare.
    /// @return True if arrays are the same. False otherwise.
    function equals(
        bytes memory lhs,
        bytes memory rhs
    )
        internal
        pure
        returns (bool equal)
    {
        // Keccak gas cost is 30 + numWords * 6. This is a cheap way to compare.
        // We early exit on unequal lengths, but keccak would also correctly
        // handle this.
        return lhs.length == rhs.length && keccak256(lhs) == keccak256(rhs);
    }

    /// @dev Reads an address from a position in a byte array.
    /// @param b Byte array containing an address.
    /// @param index Index in byte array of address.
    /// @return address from byte array.
    function readAddress(
        bytes memory b,
        uint256 index
    )
        internal
        pure
        returns (address result)
    {
        require(
            b.length >= index + 20,  // 20 is length of address
            "GREATER_OR_EQUAL_TO_20_LENGTH_REQUIRED"
        );

        // Add offset to index:
        // 1. Arrays are prefixed by 32-byte length parameter (add 32 to index)
        // 2. Account for size difference between address length and 32-byte storage word (subtract 12 from index)
        index += 20;

        // Read address from array memory
        assembly {
            // 1. Add index to address of bytes array
            // 2. Load 32-byte word from memory
            // 3. Apply 20-byte mask to obtain address
            result := and(mload(add(b, index)), 0xffffffffffffffffffffffffffffffffffffffff)
        }
        return result;
    }

    /// @dev Writes an address into a specific position in a byte array.
    /// @param b Byte array to insert address into.
    /// @param index Index in byte array of address.
    /// @param input Address to put into byte array.
    function writeAddress(
        bytes memory b,
        uint256 index,
        address input
    )
        internal
        pure
    {
        require(
            b.length >= index + 20,  // 20 is length of address
            "GREATER_OR_EQUAL_TO_20_LENGTH_REQUIRED"
        );

        // Add offset to index:
        // 1. Arrays are prefixed by 32-byte length parameter (add 32 to index)
        // 2. Account for size difference between address length and 32-byte storage word (subtract 12 from index)
        index += 20;

        // Store address into array memory
        assembly {
            // The address occupies 20 bytes and mstore stores 32 bytes.
            // First fetch the 32-byte word where we'll be storing the address, then
            // apply a mask so we have only the bytes in the word that the address will not occupy.
            // Then combine these bytes with the address and store the 32 bytes back to memory with mstore.

            // 1. Add index to address of bytes array
            // 2. Load 32-byte word from memory
            // 3. Apply 12-byte mask to obtain extra bytes occupying word of memory where we'll store the address
            let neighbors := and(
                mload(add(b, index)),
                0xffffffffffffffffffffffff0000000000000000000000000000000000000000
            )
            
            // Make sure input address is clean.
            // (Solidity does not guarantee this)
            input := and(input, 0xffffffffffffffffffffffffffffffffffffffff)

            // Store the neighbors and address into memory
            mstore(add(b, index), xor(input, neighbors))
        }
    }

    /// @dev Reads a bytes32 value from a position in a byte array.
    /// @param b Byte array containing a bytes32 value.
    /// @param index Index in byte array of bytes32 value.
    /// @return bytes32 value from byte array.
    function readBytes32(
        bytes memory b,
        uint256 index
    )
        internal
        pure
        returns (bytes32 result)
    {
        require(
            b.length >= index + 32,
            "GREATER_OR_EQUAL_TO_32_LENGTH_REQUIRED"
        );

        // Arrays are prefixed by a 256 bit length parameter
        index += 32;

        // Read the bytes32 from array memory
        assembly {
            result := mload(add(b, index))
        }
        return result;
    }

    /// @dev Writes a bytes32 into a specific position in a byte array.
    /// @param b Byte array to insert <input> into.
    /// @param index Index in byte array of <input>.
    /// @param input bytes32 to put into byte array.
    function writeBytes32(
        bytes memory b,
        uint256 index,
        bytes32 input
    )
        internal
        pure
    {
        require(
            b.length >= index + 32,
            "GREATER_OR_EQUAL_TO_32_LENGTH_REQUIRED"
        );

        // Arrays are prefixed by a 256 bit length parameter
        index += 32;

        // Read the bytes32 from array memory
        assembly {
            mstore(add(b, index), input)
        }
    }

    /// @dev Reads a uint256 value from a position in a byte array.
    /// @param b Byte array containing a uint256 value.
    /// @param index Index in byte array of uint256 value.
    /// @return uint256 value from byte array.
    function readUint256(
        bytes memory b,
        uint256 index
    )
        internal
        pure
        returns (uint256 result)
    {
        result = uint256(readBytes32(b, index));
        return result;
    }

    /// @dev Writes a uint256 into a specific position in a byte array.
    /// @param b Byte array to insert <input> into.
    /// @param index Index in byte array of <input>.
    /// @param input uint256 to put into byte array.
    function writeUint256(
        bytes memory b,
        uint256 index,
        uint256 input
    )
        internal
        pure
    {
        writeBytes32(b, index, bytes32(input));
    }

    /// @dev Reads an unpadded bytes4 value from a position in a byte array.
    /// @param b Byte array containing a bytes4 value.
    /// @param index Index in byte array of bytes4 value.
    /// @return bytes4 value from byte array.
    function readBytes4(
        bytes memory b,
        uint256 index
    )
        internal
        pure
        returns (bytes4 result)
    {
        require(
            b.length >= index + 4,
            "GREATER_OR_EQUAL_TO_4_LENGTH_REQUIRED"
        );

        // Arrays are prefixed by a 32 byte length field
        index += 32;

        // Read the bytes4 from array memory
        assembly {
            result := mload(add(b, index))
            // Solidity does not require us to clean the trailing bytes.
            // We do it anyway
            result := and(result, 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000)
        }
        return result;
    }

    function readBytes2(
        bytes memory b,
        uint256 index
    )
        internal
        pure
        returns (bytes2 result)
    {
        require(
            b.length >= index + 2,
            "GREATER_OR_EQUAL_TO_2_LENGTH_REQUIRED"
        );

        // Arrays are prefixed by a 32 byte length field
        index += 32;

        // Read the bytes4 from array memory
        assembly {
            result := mload(add(b, index))
            // Solidity does not require us to clean the trailing bytes.
            // We do it anyway
            result := and(result, 0xFFFF000000000000000000000000000000000000000000000000000000000000)
        }
        return result;
    }

    /// @dev Reads nested bytes from a specific position.
    /// @dev NOTE: the returned value overlaps with the input value.
    ///            Both should be treated as immutable.
    /// @param b Byte array containing nested bytes.
    /// @param index Index of nested bytes.
    /// @return result Nested bytes.
    function readBytesWithLength(
        bytes memory b,
        uint256 index
    )
        internal
        pure
        returns (bytes memory result)
    {
        // Read length of nested bytes
        uint256 nestedBytesLength = readUint256(b, index);
        index += 32;

        // Assert length of <b> is valid, given
        // length of nested bytes
        require(
            b.length >= index + nestedBytesLength,
            "GREATER_OR_EQUAL_TO_NESTED_BYTES_LENGTH_REQUIRED"
        );
        
        // Return a pointer to the byte array as it exists inside `b`
        assembly {
            result := add(b, index)
        }
        return result;
    }

    /// @dev Inserts bytes at a specific position in a byte array.
    /// @param b Byte array to insert <input> into.
    /// @param index Index in byte array of <input>.
    /// @param input bytes to insert.
    function writeBytesWithLength(
        bytes memory b,
        uint256 index,
        bytes memory input
    )
        internal
        pure
    {
        // Assert length of <b> is valid, given
        // length of input
        require(
            b.length >= index + 32 + input.length,  // 32 bytes to store length
            "GREATER_OR_EQUAL_TO_NESTED_BYTES_LENGTH_REQUIRED"
        );

        // Copy <input> into <b>
        memCopy(
            b.contentAddress() + index,
            input.rawAddress(), // includes length of <input>
            input.length + 32   // +32 bytes to store <input> length
        );
    }

    /// @dev Performs a deep copy of a byte array onto another byte array of greater than or equal length.
    /// @param dest Byte array that will be overwritten with source bytes.
    /// @param source Byte array to copy onto dest bytes.
    function deepCopyBytes(
        bytes memory dest,
        bytes memory source
    )
        internal
        pure
    {
        uint256 sourceLen = source.length;
        // Dest length must be >= source length, or some bytes would not be copied.
        require(
            dest.length >= sourceLen,
            "GREATER_OR_EQUAL_TO_SOURCE_BYTES_LENGTH_REQUIRED"
        );
        memCopy(
            dest.contentAddress(),
            source.contentAddress(),
            sourceLen
        );
    }
}

// File: contract-utils/Zerox/LibDecoder.sol

pragma solidity ^0.5.0;
pragma experimental ABIEncoderV2;



contract LibDecoder {
    using LibBytes for bytes;

    function decodeFillOrder(bytes memory data) internal pure returns(LibOrder.Order memory order, uint256 takerFillAmount, bytes memory mmSignature) {
        require(
            data.length > 800,
            "LENGTH_LESS_800"
        );

        // compare method_id
        // 0x64a3bc15 is fillOrKillOrder's method id.
        require(
            data.readBytes4(0) == 0x64a3bc15,
            "WRONG_METHOD_ID"
        );
        
        bytes memory dataSlice;
        assembly {
            dataSlice := add(data, 4)
        }
        //return (order, takerFillAmount, data);
        return abi.decode(dataSlice, (LibOrder.Order, uint256, bytes));

    }

    function decodeMmSignatureWithoutSign(bytes memory signature) internal pure returns(address user, uint16 feeFactor) {
        require(
            signature.length == 87 || signature.length == 88,
            "LENGTH_87_REQUIRED"
        );

        user = signature.readAddress(65);
        feeFactor = uint16(signature.readBytes2(85));
        
        require(
            feeFactor < 10000,
            "FEE_FACTOR_MORE_THEN_10000"
        );

        return (user, feeFactor);
    }

    function decodeMmSignature(bytes memory signature) internal pure returns(uint8 v, bytes32 r, bytes32 s, address user, uint16 feeFactor) {
        (user, feeFactor) = decodeMmSignatureWithoutSign(signature);

        v = uint8(signature[0]);
        r = signature.readBytes32(1);
        s = signature.readBytes32(33);

        return (v, r, s, user, feeFactor);
    }

    function decodeUserSignatureWithoutSign(bytes memory signature) internal pure returns(address receiver) {
        require(
            signature.length == 85 || signature.length == 86,
            "LENGTH_85_REQUIRED"
        );
        receiver = signature.readAddress(65);

        return receiver;
    }

    function decodeUserSignature(bytes memory signature) internal pure returns(uint8 v, bytes32 r, bytes32 s, address receiver) {
        receiver = decodeUserSignatureWithoutSign(signature);

        v = uint8(signature[0]);
        r = signature.readBytes32(1);
        s = signature.readBytes32(33);

        return (v, r, s, receiver);
    }

    function decodeERC20Asset(bytes memory assetData) internal pure returns(address) {
        require(
            assetData.length == 36,
            "LENGTH_65_REQUIRED"
        );

        return assetData.readAddress(16);
    }
}

// File: contract-utils/ERC20/IERC20NonStandard.sol

pragma solidity ^0.5.0;

/**
 * Version of ERC20 with no return values for `transfer` and `transferFrom
 * https://medium.com/coinmonks/missing-return-value-bug-at-least-130-tokens-affected-d67bf08521ca
 */
interface IERC20NonStandard {
    function transfer(address to, uint256 value) external;

    function approve(address spender, uint256 value) external;

    function transferFrom(address from, address to, uint256 value) external;

    function totalSupply() external view returns (uint256);

    function balanceOf(address who) external view returns (uint256);

    function allowance(address owner, address spender) external view returns (uint256);

    event Transfer(address indexed from, address indexed to, uint256 value);

    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: contract-utils/ERC20/SafeToken.sol

pragma solidity ^0.5.0;


contract SafeToken {
    function doApprove(address token, address spender, uint256 amount) internal {
        bool result;

        IERC20NonStandard(token).approve(spender, amount);

        assembly {
            switch returndatasize()
                case 0 {                      // This is a non-standard ERC-20
                    result := not(0)          // set result to true
                }
                case 32 {                     // This is a complaint ERC-20
                    returndatacopy(0, 0, 32)
                    result := mload(0)        // Set `result = returndata` of external call
                }
                default {                     // This is an excessively non-compliant ERC-20, revert.
                    revert(0, 0)
                }
        }

        require(
            result,
            "APPROVE_FAILED"
        );
    }

    function doTransferFrom(address token, address from, address to, uint256 amount) internal {
        bool result;

        IERC20NonStandard(token).transferFrom(from, to, amount);

        assembly {
            switch returndatasize()
                case 0 {                      // This is a non-standard ERC-20
                    result := not(0)          // set result to true
                }
                case 32 {                     // This is a complaint ERC-20
                    returndatacopy(0, 0, 32)
                    result := mload(0)        // Set `result = returndata` of external call
                }
                default {                     // This is an excessively non-compliant ERC-20, revert.
                    revert(0, 0)
                }
        }

        require(
            result,
            "TRANSFER_FROM_FAILED"
        );
    }
}

// File: contracts/MarketMakerProxy.sol

pragma solidity ^0.5.0;






interface IIMBTC {
    function burn(uint256 amount, bytes calldata data) external;
}

interface IWBTC {
    function burn(uint256 value) external;
}


contract MarketMakerProxy is 
    Ownable,
    LibWeth,
    LibDecoder,
    SafeToken
{
    string public version = "0.0.6";

    uint256 constant MAX_UINT = 2**256 - 1;
    address internal SIGNER;

    // burn xBTC
    address public IMBTC_ADDR;
    address public WBTC_ADDR;
    bytes public BTC_RECEIVER;

    // auto withdraw weth to eth
    address internal WETH_ADDR;
    address public withdrawer;
    mapping (address => bool) public isWithdrawWhitelist;

    modifier onlyWithdrawer() {
        require(
            msg.sender == withdrawer,
            "ONLY_CONTRACT_WITHDRAWER"
        );
        _;
    }
    
    constructor () public {
        owner = msg.sender;
        operator = msg.sender;
    }

    function() external payable {}

    // Manage
    function setSigner(address _signer) public onlyOperator {
        SIGNER = _signer;
    }

    function setConfig(address _weth, address _imbtc, address _wbtc, bytes memory _receiver) public onlyOperator {
        WETH_ADDR = _weth;
        IMBTC_ADDR = _imbtc;
        WBTC_ADDR = _wbtc;
        BTC_RECEIVER = _receiver;
    }

    function setWithdrawer(address _withdrawer) public onlyOperator {
        withdrawer = _withdrawer;
    }

    function setAllowance(address[] memory token_addrs, address spender) public onlyOperator {
        for (uint i = 0; i < token_addrs.length; i++) {
            address token = token_addrs[i];
            doApprove(token, spender, MAX_UINT);
            doApprove(token, address(this), MAX_UINT);
        }
    }

    function closeAllowance(address[] memory token_addrs, address spender) public onlyOperator {
        for (uint i = 0; i < token_addrs.length; i++) {
            address token = token_addrs[i];
            doApprove(token, spender, 0);
            doApprove(token, address(this), 0);
        }
    }

    function registerWithdrawWhitelist(address _addr, bool _add) public onlyOperator {
        isWithdrawWhitelist[_addr] = _add;
    }

    function withdraw(address token, address payable to, uint256 amount) public onlyWithdrawer {
        require(
            isWithdrawWhitelist[to],
            "NOT_WITHDRAW_WHITELIST"
        );
        if(token == WETH_ADDR) {
            convertWethtoETH(token, amount);
            to.transfer(amount);
        } else {
            doTransferFrom(token, address(this), to , amount);
        }
    }

    function withdrawETH(address payable to, uint256 amount) public onlyWithdrawer {
        require(
            isWithdrawWhitelist[to],
            "NOT_WITHDRAW_WHITELIST"
        );
        to.transfer(amount);
    }

    function burnImBTC(uint256 amount) public onlyWithdrawer {
        IIMBTC(IMBTC_ADDR).burn(amount, BTC_RECEIVER);
    }

    function burnWBTC(uint256 amount) public onlyWithdrawer {
        IWBTC(WBTC_ADDR).burn(amount);
    }


    function isValidSignature(bytes32 orderHash, bytes memory signature) public view returns (bytes32) {
        require(
            SIGNER == ecrecoverAddress(orderHash, signature),
            "INVALID_SIGNATURE"
        );
        return keccak256("isValidWalletSignature(bytes32,address,bytes)");
    }

    function ecrecoverAddress(bytes32 orderHash, bytes memory signature) internal pure returns (address) {
        (uint8 v, bytes32 r, bytes32 s, address user, uint16 feeFactor) = decodeMmSignature(signature);
        
        return ecrecover(
            keccak256(
                abi.encodePacked(
                    "\x19Ethereum Signed Message:\n54",
                    orderHash,
                    user,
                    feeFactor
                )),
            v, r, s
        );
    }
}

Contract Security Audit

Contract ABI

[{"constant":false,"inputs":[{"name":"_withdrawer","type":"address"}],"name":"setWithdrawer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"orderHash","type":"bytes32"},{"name":"signature","type":"bytes"}],"name":"isValidSignature","outputs":[{"name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_addr","type":"address"},{"name":"_add","type":"bool"}],"name":"registerWithdrawWhitelist","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"token_addrs","type":"address[]"},{"name":"spender","type":"address"}],"name":"closeAllowance","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_weth","type":"address"},{"name":"_imbtc","type":"address"},{"name":"_wbtc","type":"address"},{"name":"_receiver","type":"bytes"}],"name":"setConfig","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"token_addrs","type":"address[]"},{"name":"spender","type":"address"}],"name":"setAllowance","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"amount","type":"uint256"}],"name":"withdrawETH","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"WBTC_ADDR","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"burnImBTC","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"operator","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"isWithdrawWhitelist","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_signer","type":"address"}],"name":"setSigner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"BTC_RECEIVER","outputs":[{"name":"","type":"bytes"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"IMBTC_ADDR","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"burnWBTC","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOperator","type":"address"}],"name":"setOperator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"withdrawer","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"token","type":"address"},{"name":"to","type":"address"},{"name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"}]

60806040526040518060400160405280600581526020017f302e302e36000000000000000000000000000000000000000000000000000000815250600290805190602001906200005192919062000127565b503480156200005f57600080fd5b50336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001d6565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200016a57805160ff19168380011785556200019b565b828001600101855582156200019b579182015b828111156200019a5782518255916020019190600101906200017d565b5b509050620001aa9190620001ae565b5090565b620001d391905b80821115620001cf576000816000905550600101620001b5565b5090565b90565b612a2980620001e66000396000f3fe60806040526004361061012a5760003560e01c8063570ca735116100ab5780638da5cb5b1161006f5780638da5cb5b146103c55780639c92de2a146103f0578063b3ab15fb14610419578063cdc1842414610442578063d9caed121461046d578063f2fde38b146104965761012a565b8063570ca735146102de5780636742a936146103095780636c19e783146103465780636c9d2ae81461036f5780637dbcdee01461039a5761012a565b806346920bad116100f257806346920bad1461020d5780634782f779146102365780634e4317d51461025f57806354fd4d501461028a57806355038bb7146102b55761012a565b80630d174c241461012c5780631626ba7e146101555780632daf3bf11461019257806330db4580146101bb5780633278b0bb146101e4575b005b34801561013857600080fd5b50610153600480360361014e9190810190611c54565b6104bf565b005b34801561016157600080fd5b5061017c60048036036101779190810190611e13565b610593565b604051610189919061252c565b60405180910390f35b34801561019e57600080fd5b506101b960048036036101b49190810190611d83565b61064a565b005b3480156101c757600080fd5b506101e260048036036101dd9190810190611dbf565b610735565b005b3480156101f057600080fd5b5061020b60048036036102069190810190611d08565b610817565b005b34801561021957600080fd5b50610234600480360361022f9190810190611dbf565b610987565b005b34801561024257600080fd5b5061025d60048036036102589190810190611c7d565b610aa7565b005b34801561026b57600080fd5b50610274610c0e565b6040516102819190612496565b60405180910390f35b34801561029657600080fd5b5061029f610c34565b6040516102ac91906125ae565b60405180910390f35b3480156102c157600080fd5b506102dc60048036036102d79190810190611e67565b610cd2565b005b3480156102ea57600080fd5b506102f3610df5565b6040516103009190612496565b60405180910390f35b34801561031557600080fd5b50610330600480360361032b9190810190611c54565b610e1b565b60405161033d9190612511565b60405180910390f35b34801561035257600080fd5b5061036d60048036036103689190810190611c54565b610e3b565b005b34801561037b57600080fd5b50610384610f0f565b604051610391919061258c565b60405180910390f35b3480156103a657600080fd5b506103af610fad565b6040516103bc9190612496565b60405180910390f35b3480156103d157600080fd5b506103da610fd3565b6040516103e79190612496565b60405180910390f35b3480156103fc57600080fd5b5061041760048036036104129190810190611e67565b610ff8565b005b34801561042557600080fd5b50610440600480360361043b9190810190611c54565b611118565b005b34801561044e57600080fd5b506104576111eb565b6040516104649190612496565b60405180910390f35b34801561047957600080fd5b50610494600480360361048f9190810190611cb9565b611211565b005b3480156104a257600080fd5b506104bd60048036036104b89190810190611c54565b6113eb565b005b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461054f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054690612730565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061059f83836114f2565b73ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461062e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062590612650565b60405180910390fd5b60405161063a90612481565b6040518091039020905092915050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146106da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d190612730565b60405180910390fd5b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146107c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107bc90612730565b60405180910390fd5b60008090505b82518110156108125760008382815181106107e257fe5b602002602001015190506107f881846000611594565b61080481306000611594565b5080806001019150506107cb565b505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089e90612730565b60405180910390fd5b83600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060069080519060200190610980929190611a74565b5050505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0e90612730565b60405180910390fd5b60008090505b8251811015610aa2576000838281518110610a3457fe5b60200260200101519050610a6981847fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611594565b610a9481307fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611594565b508080600101915050610a1d565b505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2e906125d0565b60405180910390fd5b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bba90612630565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610c09573d6000803e3d6000fd5b505050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60028054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610cca5780601f10610c9f57610100808354040283529160200191610cca565b820191906000526020600020905b815481529060010190602001808311610cad57829003601f168201915b505050505081565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d59906125d0565b60405180910390fd5b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fe9d93038260066040518363ffffffff1660e01b8152600401610dc092919061276b565b600060405180830381600087803b158015610dda57600080fd5b505af1158015610dee573d6000803e3d6000fd5b5050505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60096020528060005260406000206000915054906101000a900460ff1681565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ecb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec290612730565b60405180910390fd5b80600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610fa55780601f10610f7a57610100808354040283529160200191610fa5565b820191906000526020600020905b815481529060010190602001808311610f8857829003601f168201915b505050505081565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107f906125d0565b60405180910390fd5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342966c68826040518263ffffffff1660e01b81526004016110e39190612750565b600060405180830381600087803b1580156110fd57600080fd5b505af1158015611111573d6000803e3d6000fd5b5050505050565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119e906126b0565b60405180910390fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146112a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611298906125d0565b60405180910390fd5b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661132d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132490612630565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156113d95761138d8382611676565b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156113d3573d6000803e3d6000fd5b506113e6565b6113e5833084846116eb565b5b505050565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461147a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611471906126b0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146114ef57806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b600080600080600080611504876117d0565b94509450945094509450600188838360405160200161152593929190612439565b604051602081830303815290604052805190602001208686866040516000815260200160405260405161155b9493929190612547565b6020604051602081039080840390855afa15801561157d573d6000803e3d6000fd5b505050602060405103519550505050505092915050565b60008373ffffffffffffffffffffffffffffffffffffffff1663095ea7b384846040518363ffffffff1660e01b81526004016115d19291906124e8565b600060405180830381600087803b1580156115eb57600080fd5b505af11580156115ff573d6000803e3d6000fd5b505050503d60008114611619576020811461162357600080fd5b600019915061162f565b60206000803e60005191505b5080611670576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166790612710565b60405180910390fd5b50505050565b60008290508073ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d836040518263ffffffff1660e01b81526004016116b49190612750565b600060405180830381600087803b1580156116ce57600080fd5b505af11580156116e2573d6000803e3d6000fd5b50505050505050565b60008473ffffffffffffffffffffffffffffffffffffffff166323b872dd8585856040518463ffffffff1660e01b815260040161172a939291906124b1565b600060405180830381600087803b15801561174457600080fd5b505af1158015611758573d6000803e3d6000fd5b505050503d60008114611772576020811461177c57600080fd5b6000199150611788565b60206000803e60005191505b50806117c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c090612670565b60405180910390fd5b5050505050565b60008060008060006117e18661184a565b8092508193505050856000815181106117f657fe5b602001015160f81c60f81b60f81c945061181a60018761191f90919063ffffffff16565b935061183060218761191f90919063ffffffff16565b925084848484849450945094509450945091939590929450565b60008060578351148061185e575060588351145b61189d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189490612690565b60405180910390fd5b6118b160418461197d90919063ffffffff16565b91506118c76055846119f190919063ffffffff16565b60f01c90506127108161ffff1610611914576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190b906125f0565b60405180910390fd5b818191509150915091565b60006020820183511015611968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195f90612610565b60405180910390fd5b60208201915081830151905080905092915050565b600060148201835110156119c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bd906126f0565b60405180910390fd5b60148201915073ffffffffffffffffffffffffffffffffffffffff8284015116905080905092915050565b60006002820183511015611a3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a31906126d0565b60405180910390fd5b6020820191508183015190507fffff0000000000000000000000000000000000000000000000000000000000008116905080905092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10611ab557805160ff1916838001178555611ae3565b82800160010185558215611ae3579182015b82811115611ae2578251825591602001919060010190611ac7565b5b509050611af09190611af4565b5090565b611b1691905b80821115611b12576000816000905550600101611afa565b5090565b90565b6000611b2582356128de565b905092915050565b6000611b3982356128f0565b905092915050565b600082601f830112611b5257600080fd5b8135611b65611b60826127c8565b61279b565b91508181835260208401935060208101905083856020840282011115611b8a57600080fd5b60005b83811015611bba5781611ba08882611b19565b845260208401935060208301925050600181019050611b8d565b5050505092915050565b6000611bd08235612902565b905092915050565b6000611be4823561290e565b905092915050565b600082601f830112611bfd57600080fd5b8135611c10611c0b826127f0565b61279b565b91508082526020830160208301858383011115611c2c57600080fd5b611c37838284612942565b50505092915050565b6000611c4c8235612938565b905092915050565b600060208284031215611c6657600080fd5b6000611c7484828501611b19565b91505092915050565b60008060408385031215611c9057600080fd5b6000611c9e85828601611b2d565b9250506020611caf85828601611c40565b9150509250929050565b600080600060608486031215611cce57600080fd5b6000611cdc86828701611b19565b9350506020611ced86828701611b2d565b9250506040611cfe86828701611c40565b9150509250925092565b60008060008060808587031215611d1e57600080fd5b6000611d2c87828801611b19565b9450506020611d3d87828801611b19565b9350506040611d4e87828801611b19565b925050606085013567ffffffffffffffff811115611d6b57600080fd5b611d7787828801611bec565b91505092959194509250565b60008060408385031215611d9657600080fd5b6000611da485828601611b19565b9250506020611db585828601611bc4565b9150509250929050565b60008060408385031215611dd257600080fd5b600083013567ffffffffffffffff811115611dec57600080fd5b611df885828601611b41565b9250506020611e0985828601611b19565b9150509250929050565b60008060408385031215611e2657600080fd5b6000611e3485828601611bd8565b925050602083013567ffffffffffffffff811115611e5157600080fd5b611e5d85828601611bec565b9150509250929050565b600060208284031215611e7957600080fd5b6000611e8784828501611c40565b91505092915050565b611e9981612871565b82525050565b611eb0611eab82612871565b612984565b82525050565b611ebf81612883565b82525050565b611ece8161288f565b82525050565b611ee5611ee08261288f565b612996565b82525050565b6000611ef68261282e565b611f008185612844565b9350611f10818560208601612951565b611f19816129c4565b840191505092915050565b600081546001811660008114611f415760018114611f6757611fab565b607f6002830416611f528187612844565b955060ff198316865260208601935050611fab565b60028204611f758187612844565b9550611f808561281c565b60005b82811015611fa257815481890152600182019150602081019050611f83565b80880195505050505b505092915050565b6000611fbe82612839565b611fc88185612855565b9350611fd8818560208601612951565b611fe1816129c4565b840191505092915050565b6000611ff9601c83612866565b91507f19457468657265756d205369676e6564204d6573736167653a0a3534000000006000830152601c82019050919050565b6000612039601883612855565b91507f4f4e4c595f434f4e54524143545f5749544844524157455200000000000000006000830152602082019050919050565b6000612079601a83612855565b91507f4645455f464143544f525f4d4f52455f5448454e5f31303030300000000000006000830152602082019050919050565b60006120b9602683612855565b91507f475245415445525f4f525f455155414c5f544f5f33325f4c454e4754485f524560008301527f51554952454400000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061211f601683612855565b91507f4e4f545f57495448445241575f57484954454c495354000000000000000000006000830152602082019050919050565b600061215f601183612855565b91507f494e56414c49445f5349474e41545552450000000000000000000000000000006000830152602082019050919050565b600061219f601483612855565b91507f5452414e534645525f46524f4d5f4641494c45440000000000000000000000006000830152602082019050919050565b60006121df601283612855565b91507f4c454e4754485f38375f524551554952454400000000000000000000000000006000830152602082019050919050565b600061221f601383612855565b91507f4f4e4c595f434f4e54524143545f4f574e4552000000000000000000000000006000830152602082019050919050565b600061225f602d83612866565b91507f697356616c696457616c6c65745369676e617475726528627974657333322c6160008301527f6464726573732c627974657329000000000000000000000000000000000000006020830152602d82019050919050565b60006122c5602583612855565b91507f475245415445525f4f525f455155414c5f544f5f325f4c454e4754485f52455160008301527f55495245440000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061232b602683612855565b91507f475245415445525f4f525f455155414c5f544f5f32305f4c454e4754485f524560008301527f51554952454400000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612391600e83612855565b91507f415050524f56455f4641494c45440000000000000000000000000000000000006000830152602082019050919050565b60006123d1601683612855565b91507f4f4e4c595f434f4e54524143545f4f50455241544f52000000000000000000006000830152602082019050919050565b61241561241082612899565b6129a0565b82525050565b612424816128c7565b82525050565b612433816128d1565b82525050565b600061244482611fec565b91506124508286611ed4565b6020820191506124608285611e9f565b6014820191506124708284612404565b600282019150819050949350505050565b600061248c82612252565b9150819050919050565b60006020820190506124ab6000830184611e90565b92915050565b60006060820190506124c66000830186611e90565b6124d36020830185611e90565b6124e0604083018461241b565b949350505050565b60006040820190506124fd6000830185611e90565b61250a602083018461241b565b9392505050565b60006020820190506125266000830184611eb6565b92915050565b60006020820190506125416000830184611ec5565b92915050565b600060808201905061255c6000830187611ec5565b612569602083018661242a565b6125766040830185611ec5565b6125836060830184611ec5565b95945050505050565b600060208201905081810360008301526125a68184611eeb565b905092915050565b600060208201905081810360008301526125c88184611fb3565b905092915050565b600060208201905081810360008301526125e98161202c565b9050919050565b600060208201905081810360008301526126098161206c565b9050919050565b60006020820190508181036000830152612629816120ac565b9050919050565b6000602082019050818103600083015261264981612112565b9050919050565b6000602082019050818103600083015261266981612152565b9050919050565b6000602082019050818103600083015261268981612192565b9050919050565b600060208201905081810360008301526126a9816121d2565b9050919050565b600060208201905081810360008301526126c981612212565b9050919050565b600060208201905081810360008301526126e9816122b8565b9050919050565b600060208201905081810360008301526127098161231e565b9050919050565b6000602082019050818103600083015261272981612384565b9050919050565b60006020820190508181036000830152612749816123c4565b9050919050565b6000602082019050612765600083018461241b565b92915050565b6000604082019050612780600083018561241b565b81810360208301526127928184611f24565b90509392505050565b6000604051905081810181811067ffffffffffffffff821117156127be57600080fd5b8060405250919050565b600067ffffffffffffffff8211156127df57600080fd5b602082029050602081019050919050565b600067ffffffffffffffff82111561280757600080fd5b601f19601f8301169050602081019050919050565b60008160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061287c826128a7565b9050919050565b60008115159050919050565b6000819050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006128e982612918565b9050919050565b60006128fb82612918565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561296f578082015181840152602081019050612954565b8381111561297e576000848401525b50505050565b600061298f826129b2565b9050919050565b6000819050919050565b60006129ab826129d5565b9050919050565b60006129bd826129e2565b9050919050565b6000601f19601f8301169050919050565b60008160f01b9050919050565b60008160601b905091905056fea265627a7a72305820507337e52571e1b3d426291158152b62ce8f834c6fdb80d0e05b331a4c3049d96c6578706572696d656e74616cf50037

Deployed Bytecode

0x60806040526004361061012a5760003560e01c8063570ca735116100ab5780638da5cb5b1161006f5780638da5cb5b146103c55780639c92de2a146103f0578063b3ab15fb14610419578063cdc1842414610442578063d9caed121461046d578063f2fde38b146104965761012a565b8063570ca735146102de5780636742a936146103095780636c19e783146103465780636c9d2ae81461036f5780637dbcdee01461039a5761012a565b806346920bad116100f257806346920bad1461020d5780634782f779146102365780634e4317d51461025f57806354fd4d501461028a57806355038bb7146102b55761012a565b80630d174c241461012c5780631626ba7e146101555780632daf3bf11461019257806330db4580146101bb5780633278b0bb146101e4575b005b34801561013857600080fd5b50610153600480360361014e9190810190611c54565b6104bf565b005b34801561016157600080fd5b5061017c60048036036101779190810190611e13565b610593565b604051610189919061252c565b60405180910390f35b34801561019e57600080fd5b506101b960048036036101b49190810190611d83565b61064a565b005b3480156101c757600080fd5b506101e260048036036101dd9190810190611dbf565b610735565b005b3480156101f057600080fd5b5061020b60048036036102069190810190611d08565b610817565b005b34801561021957600080fd5b50610234600480360361022f9190810190611dbf565b610987565b005b34801561024257600080fd5b5061025d60048036036102589190810190611c7d565b610aa7565b005b34801561026b57600080fd5b50610274610c0e565b6040516102819190612496565b60405180910390f35b34801561029657600080fd5b5061029f610c34565b6040516102ac91906125ae565b60405180910390f35b3480156102c157600080fd5b506102dc60048036036102d79190810190611e67565b610cd2565b005b3480156102ea57600080fd5b506102f3610df5565b6040516103009190612496565b60405180910390f35b34801561031557600080fd5b50610330600480360361032b9190810190611c54565b610e1b565b60405161033d9190612511565b60405180910390f35b34801561035257600080fd5b5061036d60048036036103689190810190611c54565b610e3b565b005b34801561037b57600080fd5b50610384610f0f565b604051610391919061258c565b60405180910390f35b3480156103a657600080fd5b506103af610fad565b6040516103bc9190612496565b60405180910390f35b3480156103d157600080fd5b506103da610fd3565b6040516103e79190612496565b60405180910390f35b3480156103fc57600080fd5b5061041760048036036104129190810190611e67565b610ff8565b005b34801561042557600080fd5b50610440600480360361043b9190810190611c54565b611118565b005b34801561044e57600080fd5b506104576111eb565b6040516104649190612496565b60405180910390f35b34801561047957600080fd5b50610494600480360361048f9190810190611cb9565b611211565b005b3480156104a257600080fd5b506104bd60048036036104b89190810190611c54565b6113eb565b005b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461054f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054690612730565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061059f83836114f2565b73ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461062e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062590612650565b60405180910390fd5b60405161063a90612481565b6040518091039020905092915050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146106da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d190612730565b60405180910390fd5b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146107c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107bc90612730565b60405180910390fd5b60008090505b82518110156108125760008382815181106107e257fe5b602002602001015190506107f881846000611594565b61080481306000611594565b5080806001019150506107cb565b505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089e90612730565b60405180910390fd5b83600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060069080519060200190610980929190611a74565b5050505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0e90612730565b60405180910390fd5b60008090505b8251811015610aa2576000838281518110610a3457fe5b60200260200101519050610a6981847fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611594565b610a9481307fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611594565b508080600101915050610a1d565b505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2e906125d0565b60405180910390fd5b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bba90612630565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610c09573d6000803e3d6000fd5b505050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60028054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610cca5780601f10610c9f57610100808354040283529160200191610cca565b820191906000526020600020905b815481529060010190602001808311610cad57829003601f168201915b505050505081565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d59906125d0565b60405180910390fd5b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fe9d93038260066040518363ffffffff1660e01b8152600401610dc092919061276b565b600060405180830381600087803b158015610dda57600080fd5b505af1158015610dee573d6000803e3d6000fd5b5050505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60096020528060005260406000206000915054906101000a900460ff1681565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ecb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec290612730565b60405180910390fd5b80600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610fa55780601f10610f7a57610100808354040283529160200191610fa5565b820191906000526020600020905b815481529060010190602001808311610f8857829003601f168201915b505050505081565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107f906125d0565b60405180910390fd5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342966c68826040518263ffffffff1660e01b81526004016110e39190612750565b600060405180830381600087803b1580156110fd57600080fd5b505af1158015611111573d6000803e3d6000fd5b5050505050565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119e906126b0565b60405180910390fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146112a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611298906125d0565b60405180910390fd5b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661132d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132490612630565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156113d95761138d8382611676565b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156113d3573d6000803e3d6000fd5b506113e6565b6113e5833084846116eb565b5b505050565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461147a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611471906126b0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146114ef57806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b600080600080600080611504876117d0565b94509450945094509450600188838360405160200161152593929190612439565b604051602081830303815290604052805190602001208686866040516000815260200160405260405161155b9493929190612547565b6020604051602081039080840390855afa15801561157d573d6000803e3d6000fd5b505050602060405103519550505050505092915050565b60008373ffffffffffffffffffffffffffffffffffffffff1663095ea7b384846040518363ffffffff1660e01b81526004016115d19291906124e8565b600060405180830381600087803b1580156115eb57600080fd5b505af11580156115ff573d6000803e3d6000fd5b505050503d60008114611619576020811461162357600080fd5b600019915061162f565b60206000803e60005191505b5080611670576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166790612710565b60405180910390fd5b50505050565b60008290508073ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d836040518263ffffffff1660e01b81526004016116b49190612750565b600060405180830381600087803b1580156116ce57600080fd5b505af11580156116e2573d6000803e3d6000fd5b50505050505050565b60008473ffffffffffffffffffffffffffffffffffffffff166323b872dd8585856040518463ffffffff1660e01b815260040161172a939291906124b1565b600060405180830381600087803b15801561174457600080fd5b505af1158015611758573d6000803e3d6000fd5b505050503d60008114611772576020811461177c57600080fd5b6000199150611788565b60206000803e60005191505b50806117c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c090612670565b60405180910390fd5b5050505050565b60008060008060006117e18661184a565b8092508193505050856000815181106117f657fe5b602001015160f81c60f81b60f81c945061181a60018761191f90919063ffffffff16565b935061183060218761191f90919063ffffffff16565b925084848484849450945094509450945091939590929450565b60008060578351148061185e575060588351145b61189d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189490612690565b60405180910390fd5b6118b160418461197d90919063ffffffff16565b91506118c76055846119f190919063ffffffff16565b60f01c90506127108161ffff1610611914576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190b906125f0565b60405180910390fd5b818191509150915091565b60006020820183511015611968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195f90612610565b60405180910390fd5b60208201915081830151905080905092915050565b600060148201835110156119c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bd906126f0565b60405180910390fd5b60148201915073ffffffffffffffffffffffffffffffffffffffff8284015116905080905092915050565b60006002820183511015611a3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a31906126d0565b60405180910390fd5b6020820191508183015190507fffff0000000000000000000000000000000000000000000000000000000000008116905080905092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10611ab557805160ff1916838001178555611ae3565b82800160010185558215611ae3579182015b82811115611ae2578251825591602001919060010190611ac7565b5b509050611af09190611af4565b5090565b611b1691905b80821115611b12576000816000905550600101611afa565b5090565b90565b6000611b2582356128de565b905092915050565b6000611b3982356128f0565b905092915050565b600082601f830112611b5257600080fd5b8135611b65611b60826127c8565b61279b565b91508181835260208401935060208101905083856020840282011115611b8a57600080fd5b60005b83811015611bba5781611ba08882611b19565b845260208401935060208301925050600181019050611b8d565b5050505092915050565b6000611bd08235612902565b905092915050565b6000611be4823561290e565b905092915050565b600082601f830112611bfd57600080fd5b8135611c10611c0b826127f0565b61279b565b91508082526020830160208301858383011115611c2c57600080fd5b611c37838284612942565b50505092915050565b6000611c4c8235612938565b905092915050565b600060208284031215611c6657600080fd5b6000611c7484828501611b19565b91505092915050565b60008060408385031215611c9057600080fd5b6000611c9e85828601611b2d565b9250506020611caf85828601611c40565b9150509250929050565b600080600060608486031215611cce57600080fd5b6000611cdc86828701611b19565b9350506020611ced86828701611b2d565b9250506040611cfe86828701611c40565b9150509250925092565b60008060008060808587031215611d1e57600080fd5b6000611d2c87828801611b19565b9450506020611d3d87828801611b19565b9350506040611d4e87828801611b19565b925050606085013567ffffffffffffffff811115611d6b57600080fd5b611d7787828801611bec565b91505092959194509250565b60008060408385031215611d9657600080fd5b6000611da485828601611b19565b9250506020611db585828601611bc4565b9150509250929050565b60008060408385031215611dd257600080fd5b600083013567ffffffffffffffff811115611dec57600080fd5b611df885828601611b41565b9250506020611e0985828601611b19565b9150509250929050565b60008060408385031215611e2657600080fd5b6000611e3485828601611bd8565b925050602083013567ffffffffffffffff811115611e5157600080fd5b611e5d85828601611bec565b9150509250929050565b600060208284031215611e7957600080fd5b6000611e8784828501611c40565b91505092915050565b611e9981612871565b82525050565b611eb0611eab82612871565b612984565b82525050565b611ebf81612883565b82525050565b611ece8161288f565b82525050565b611ee5611ee08261288f565b612996565b82525050565b6000611ef68261282e565b611f008185612844565b9350611f10818560208601612951565b611f19816129c4565b840191505092915050565b600081546001811660008114611f415760018114611f6757611fab565b607f6002830416611f528187612844565b955060ff198316865260208601935050611fab565b60028204611f758187612844565b9550611f808561281c565b60005b82811015611fa257815481890152600182019150602081019050611f83565b80880195505050505b505092915050565b6000611fbe82612839565b611fc88185612855565b9350611fd8818560208601612951565b611fe1816129c4565b840191505092915050565b6000611ff9601c83612866565b91507f19457468657265756d205369676e6564204d6573736167653a0a3534000000006000830152601c82019050919050565b6000612039601883612855565b91507f4f4e4c595f434f4e54524143545f5749544844524157455200000000000000006000830152602082019050919050565b6000612079601a83612855565b91507f4645455f464143544f525f4d4f52455f5448454e5f31303030300000000000006000830152602082019050919050565b60006120b9602683612855565b91507f475245415445525f4f525f455155414c5f544f5f33325f4c454e4754485f524560008301527f51554952454400000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061211f601683612855565b91507f4e4f545f57495448445241575f57484954454c495354000000000000000000006000830152602082019050919050565b600061215f601183612855565b91507f494e56414c49445f5349474e41545552450000000000000000000000000000006000830152602082019050919050565b600061219f601483612855565b91507f5452414e534645525f46524f4d5f4641494c45440000000000000000000000006000830152602082019050919050565b60006121df601283612855565b91507f4c454e4754485f38375f524551554952454400000000000000000000000000006000830152602082019050919050565b600061221f601383612855565b91507f4f4e4c595f434f4e54524143545f4f574e4552000000000000000000000000006000830152602082019050919050565b600061225f602d83612866565b91507f697356616c696457616c6c65745369676e617475726528627974657333322c6160008301527f6464726573732c627974657329000000000000000000000000000000000000006020830152602d82019050919050565b60006122c5602583612855565b91507f475245415445525f4f525f455155414c5f544f5f325f4c454e4754485f52455160008301527f55495245440000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061232b602683612855565b91507f475245415445525f4f525f455155414c5f544f5f32305f4c454e4754485f524560008301527f51554952454400000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612391600e83612855565b91507f415050524f56455f4641494c45440000000000000000000000000000000000006000830152602082019050919050565b60006123d1601683612855565b91507f4f4e4c595f434f4e54524143545f4f50455241544f52000000000000000000006000830152602082019050919050565b61241561241082612899565b6129a0565b82525050565b612424816128c7565b82525050565b612433816128d1565b82525050565b600061244482611fec565b91506124508286611ed4565b6020820191506124608285611e9f565b6014820191506124708284612404565b600282019150819050949350505050565b600061248c82612252565b9150819050919050565b60006020820190506124ab6000830184611e90565b92915050565b60006060820190506124c66000830186611e90565b6124d36020830185611e90565b6124e0604083018461241b565b949350505050565b60006040820190506124fd6000830185611e90565b61250a602083018461241b565b9392505050565b60006020820190506125266000830184611eb6565b92915050565b60006020820190506125416000830184611ec5565b92915050565b600060808201905061255c6000830187611ec5565b612569602083018661242a565b6125766040830185611ec5565b6125836060830184611ec5565b95945050505050565b600060208201905081810360008301526125a68184611eeb565b905092915050565b600060208201905081810360008301526125c88184611fb3565b905092915050565b600060208201905081810360008301526125e98161202c565b9050919050565b600060208201905081810360008301526126098161206c565b9050919050565b60006020820190508181036000830152612629816120ac565b9050919050565b6000602082019050818103600083015261264981612112565b9050919050565b6000602082019050818103600083015261266981612152565b9050919050565b6000602082019050818103600083015261268981612192565b9050919050565b600060208201905081810360008301526126a9816121d2565b9050919050565b600060208201905081810360008301526126c981612212565b9050919050565b600060208201905081810360008301526126e9816122b8565b9050919050565b600060208201905081810360008301526127098161231e565b9050919050565b6000602082019050818103600083015261272981612384565b9050919050565b60006020820190508181036000830152612749816123c4565b9050919050565b6000602082019050612765600083018461241b565b92915050565b6000604082019050612780600083018561241b565b81810360208301526127928184611f24565b90509392505050565b6000604051905081810181811067ffffffffffffffff821117156127be57600080fd5b8060405250919050565b600067ffffffffffffffff8211156127df57600080fd5b602082029050602081019050919050565b600067ffffffffffffffff82111561280757600080fd5b601f19601f8301169050602081019050919050565b60008160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061287c826128a7565b9050919050565b60008115159050919050565b6000819050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006128e982612918565b9050919050565b60006128fb82612918565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561296f578082015181840152602081019050612954565b8381111561297e576000848401525b50505050565b600061298f826129b2565b9050919050565b6000819050919050565b60006129ab826129d5565b9050919050565b60006129bd826129e2565b9050919050565b6000601f19601f8301169050919050565b60008160f01b9050919050565b60008160601b905091905056fea265627a7a72305820507337e52571e1b3d426291158152b62ce8f834c6fdb80d0e05b331a4c3049d96c6578706572696d656e74616cf50037

Deployed Bytecode Sourcemap

37004:3771:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38158:107;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38158:107:0;;;;;;;;;;;;;;;;:::i;:::-;;39944:309;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39944:309:0;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;38909:133;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38909:133:0;;;;;;;;;;;;;;;;:::i;:::-;;38597:304;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38597:304:0;;;;;;;;;;;;;;;;:::i;:::-;;37912:238;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37912:238:0;;;;;;;;;;;;;;;;:::i;:::-;;38273:316;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38273:316:0;;;;;;;;;;;;;;;;:::i;:::-;;39470:223;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39470:223:0;;;;;;;;;;;;;;;;:::i;:::-;;37269:24;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37269:24:0;;;:::i;:::-;;;;;;;;;;;;;;;;37102:31;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37102:31:0;;;:::i;:::-;;;;;;;;;;;;;;;;39701:121;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39701:121:0;;;;;;;;;;;;;;;;:::i;:::-;;350:23;;8:9:-1;5:2;;;30:1;27;20:12;5:2;350:23:0;;;:::i;:::-;;;;;;;;;;;;;;;;37433:52;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37433:52:0;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;37813:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37813:91:0;;;;;;;;;;;;;;;;:::i;:::-;;37300:25;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37300:25:0;;;:::i;:::-;;;;;;;;;;;;;;;;37237;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37237:25:0;;;:::i;:::-;;;;;;;;;;;;;;;;325:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;325:20:0;;;:::i;:::-;;;;;;;;;;;;;;;;39830:104;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39830:104:0;;;;;;;;;;;;;;;;:::i;:::-;;850:108;;8:9:-1;5:2;;;30:1;27;20:12;5:2;850:108:0;;;;;;;;;;;;;;;;:::i;:::-;;37401:25;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37401:25:0;;;:::i;:::-;;;;;;;;;;;;;;;;39050:412;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39050:412:0;;;;;;;;;;;;;;;;:::i;:::-;;696:148;;8:9:-1;5:2;;;30:1;27;20:12;5:2;696:148:0;;;;;;;;;;;;;;;;:::i;:::-;;38158:107;628:8;;;;;;;;;;;614:22;;:10;:22;;;598:78;;;;;;;;;;;;;;;;;;;;;;38246:11;38233:10;;:24;;;;;;;;;;;;;;;;;;38158:107;:::o;39944:309::-;40034:7;40086:38;40103:9;40114;40086:16;:38::i;:::-;40076:48;;:6;;;;;;;;;;;:48;;;40054:115;;;;;;;;;;;;;;;;;;;;;;40187:58;;;;;;;;;;;;;;40180:65;;39944:309;;;;:::o;38909:133::-;628:8;;;;;;;;;;;614:22;;:10;:22;;;598:78;;;;;;;;;;;;;;;;;;;;;;39030:4;39001:19;:26;39021:5;39001:26;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;38909:133;;:::o;38597:304::-;628:8;;;;;;;;;;;614:22;;:10;:22;;;598:78;;;;;;;;;;;;;;;;;;;;;;38704:6;38713:1;38704:10;;38699:195;38720:11;:18;38716:1;:22;38699:195;;;38760:13;38776:11;38788:1;38776:14;;;;;;;;;;;;;;38760:30;;38805:28;38815:5;38822:7;38831:1;38805:9;:28::i;:::-;38848:34;38858:5;38873:4;38880:1;38848:9;:34::i;:::-;38699:195;38740:3;;;;;;;38699:195;;;;38597:304;;:::o;37912:238::-;628:8;;;;;;;;;;;614:22;;:10;:22;;;598:78;;;;;;;;;;;;;;;;;;;;;;38044:5;38032:9;;:17;;;;;;;;;;;;;;;;;;38073:6;38060:10;;:19;;;;;;;;;;;;;;;;;;38102:5;38090:9;;:17;;;;;;;;;;;;;;;;;;38133:9;38118:12;:24;;;;;;;;;;;;:::i;:::-;;37912:238;;;;:::o;38273:316::-;628:8;;;;;;;;;;;614:22;;:10;:22;;;598:78;;;;;;;;;;;;;;;;;;;;;;38378:6;38387:1;38378:10;;38373:209;38394:11;:18;38390:1;:22;38373:209;;;38434:13;38450:11;38462:1;38450:14;;;;;;;;;;;;;;38434:30;;38479:35;38489:5;38496:7;37170:10;38479:9;:35::i;:::-;38529:41;38539:5;38554:4;37170:10;38529:9;:41::i;:::-;38373:209;38414:3;;;;;;;38373:209;;;;38273:316;;:::o;39470:223::-;37567:10;;;;;;;;;;;37553:24;;:10;:24;;;37531:98;;;;;;;;;;;;;;;;;;;;;;39582:19;:23;39602:2;39582:23;;;;;;;;;;;;;;;;;;;;;;;;;39560:95;;;;;;;;;;;;;;;;;;;;;;39666:2;:11;;:19;39678:6;39666:19;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;39666:19:0;39470:223;;:::o;37269:24::-;;;;;;;;;;;;;:::o;37102:31::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39701:121::-;37567:10;;;;;;;;;;;37553:24;;:10;:24;;;37531:98;;;;;;;;;;;;;;;;;;;;;;39776:10;;;;;;;;;;;39769:23;;;39793:6;39801:12;39769:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39769:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;39769:45:0;;;;39701:121;:::o;350:23::-;;;;;;;;;;;;;:::o;37433:52::-;;;;;;;;;;;;;;;;;;;;;;:::o;37813:91::-;628:8;;;;;;;;;;;614:22;;:10;:22;;;598:78;;;;;;;;;;;;;;;;;;;;;;37889:7;37880:6;;:16;;;;;;;;;;;;;;;;;;37813:91;:::o;37300:25::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37237:::-;;;;;;;;;;;;;:::o;325:20::-;;;;;;;;;;;;;:::o;39830:104::-;37567:10;;;;;;;;;;;37553:24;;:10;:24;;;37531:98;;;;;;;;;;;;;;;;;;;;;;39903:9;;;;;;;;;;;39897:21;;;39919:6;39897:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39897:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;39897:29:0;;;;39830:104;:::o;850:108::-;505:5;;;;;;;;;;;491:19;;:10;:19;;;475:72;;;;;;;;;;;;;;;;;;;;;;941:11;930:8;;:22;;;;;;;;;;;;;;;;;;850:108;:::o;37401:25::-;;;;;;;;;;;;;:::o;39050:412::-;37567:10;;;;;;;;;;;37553:24;;:10;:24;;;37531:98;;;;;;;;;;;;;;;;;;;;;;39174:19;:23;39194:2;39174:23;;;;;;;;;;;;;;;;;;;;;;;;;39152:95;;;;;;;;;;;;;;;;;;;;;;39270:9;;;;;;;;;;;39261:18;;:5;:18;;;39258:197;;;39296:31;39313:5;39320:6;39296:16;:31::i;:::-;39342:2;:11;;:19;39354:6;39342:19;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;39342:19:0;39258:197;;;39394:49;39409:5;39424:4;39431:2;39436:6;39394:14;:49::i;:::-;39258:197;39050:412;;;:::o;696:148::-;505:5;;;;;;;;;;;491:19;;:10;:19;;;475:72;;;;;;;;;;;;;;;;;;;;;;802:1;782:22;;:8;:22;;;778:61;;823:8;815:5;;:16;;;;;;;;;;;;;;;;;;778:61;696:148;:::o;40261:511::-;40353:7;40374;40383:9;40394;40405:12;40419:16;40439:28;40457:9;40439:17;:28::i;:::-;40373:94;;;;;;;;;;40495:269;40643:9;40675:4;40702:9;40547:183;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;40547:183:0;;;40519:212;;;;;;40746:1;40749;40752;40495:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;40495:269:0;;;;;;;;40488:276;;;;;;;40261:511;;;;:::o;34962:880::-;35049:11;35091:5;35073:32;;;35106:7;35115:6;35073:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35073:49:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;35073:49:0;;;;35166:16;35205:1;35200:150;;;;35373:2;35368:217;;;;35720:1;35717;35710:12;35200:150;35298:1;35294:6;35284:16;;35200:150;;35368:217;35470:2;35467:1;35464;35449:24;35511:1;35505:8;35495:18;;35159:582;;35786:6;35764:70;;;;;;;;;;;;;;;;;;;;;;34962:880;;;;:::o;1406:148::-;1486:10;1505:8;1486:28;;1525:4;:13;;;1539:6;1525:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1525:21:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;1525:21:0;;;;1406:148;;;:::o;35850:906::-;35951:11;35993:5;35975:37;;;36013:4;36019:2;36023:6;35975:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35975:55:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;35975:55:0;;;;36074:16;36113:1;36108:150;;;;36281:2;36276:217;;;;36628:1;36625;36618:12;36108:150;36206:1;36202:6;36192:16;;36108:150;;36276:217;36378:2;36375:1;36372;36357:24;36419:1;36413:8;36403:18;;36067:582;;36694:6;36672:76;;;;;;;;;;;;;;;;;;;;;;35850:906;;;;;:::o;32654:375::-;32727:7;32736:9;32747;32758:12;32772:16;32821:39;32850:9;32821:28;:39::i;:::-;32801:59;;;;;;;;32883:9;32893:1;32883:12;;;;;;;;;;;;;;;;32877:19;;32873:23;;32911:24;32933:1;32911:9;:21;;:24;;;;:::i;:::-;32907:28;;32950:25;32972:2;32950:9;:21;;:25;;;;:::i;:::-;32946:29;;32996:1;32999;33002;33005:4;33011:9;32988:33;;;;;;;;;;32654:375;;;;;;;:::o;32144:502::-;32228:12;32242:16;32313:2;32293:9;:16;:22;:48;;;;32339:2;32319:9;:16;:22;32293:48;32271:116;;;;;;;;;;;;;;;;;;;;;;32407:25;32429:2;32407:9;:21;;:25;;;;:::i;:::-;32400:32;;32462:24;32483:2;32462:9;:20;;:24;;;;:::i;:::-;32455:32;;32443:44;;32542:5;32530:9;:17;;;32508:93;;;;;;;;;;;;;;;;;;;;;;32622:4;32628:9;32614:24;;;;32144:502;;;:::o;24784:511::-;24911:14;24985:2;24977:5;:10;24965:1;:8;:22;;24943:110;;;;;;;;;;;;;;;;;;;;;;25137:2;25128:11;;;;25246:5;25243:1;25239:13;25233:20;25223:30;;25281:6;25274:13;;24784:511;;;;:::o;21684:912::-;21811:14;21885:2;21877:5;:10;21865:1;:8;:22;;21843:138;;;;;;;;;;;;;;;;;;;;;;22233:2;22224:11;;;;22511:42;22502:5;22499:1;22495:13;22489:20;22485:69;22475:79;;22582:6;22575:13;;21684:912;;;;:::o;27890:711::-;28016:13;28089:1;28081:5;:9;28069:1;:8;:21;;28047:108;;;;;;;;;;;;;;;;;;;;;;28235:2;28226:11;;;;28343:5;28340:1;28336:13;28330:20;28320:30;;28492:66;28484:6;28480:79;28470:89;;28587:6;28580:13;;27890:711;;;;:::o;37004:3771::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5:118:-1:-;;72:46;110:6;97:20;72:46;;;63:55;;57:66;;;;;130:134;;205:54;251:6;238:20;205:54;;;196:63;;190:74;;;;;289:707;;406:3;399:4;391:6;387:17;383:27;373:2;;424:1;421;414:12;373:2;461:6;448:20;483:80;498:64;555:6;498:64;;;483:80;;;474:89;;580:5;605:6;598:5;591:21;635:4;627:6;623:17;613:27;;657:4;652:3;648:14;641:21;;710:6;757:3;749:4;741:6;737:17;732:3;728:27;725:36;722:2;;;774:1;771;764:12;722:2;799:1;784:206;809:6;806:1;803:13;784:206;;;867:3;889:37;922:3;910:10;889:37;;;884:3;877:50;950:4;945:3;941:14;934:21;;978:4;973:3;969:14;962:21;;841:149;831:1;828;824:9;819:14;;784:206;;;788:14;366:630;;;;;;;;1004:112;;1068:43;1103:6;1090:20;1068:43;;;1059:52;;1053:63;;;;;1123:118;;1190:46;1228:6;1215:20;1190:46;;;1181:55;;1175:66;;;;;1249:440;;1350:3;1343:4;1335:6;1331:17;1327:27;1317:2;;1368:1;1365;1358:12;1317:2;1405:6;1392:20;1427:64;1442:48;1483:6;1442:48;;;1427:64;;;1418:73;;1511:6;1504:5;1497:21;1547:4;1539:6;1535:17;1580:4;1573:5;1569:16;1615:3;1606:6;1601:3;1597:16;1594:25;1591:2;;;1632:1;1629;1622:12;1591:2;1642:41;1676:6;1671:3;1666;1642:41;;;1310:379;;;;;;;;1697:118;;1764:46;1802:6;1789:20;1764:46;;;1755:55;;1749:66;;;;;1822:241;;1926:2;1914:9;1905:7;1901:23;1897:32;1894:2;;;1942:1;1939;1932:12;1894:2;1977:1;1994:53;2039:7;2030:6;2019:9;2015:22;1994:53;;;1984:63;;1956:97;1888:175;;;;;2070:382;;;2199:2;2187:9;2178:7;2174:23;2170:32;2167:2;;;2215:1;2212;2205:12;2167:2;2250:1;2267:61;2320:7;2311:6;2300:9;2296:22;2267:61;;;2257:71;;2229:105;2365:2;2383:53;2428:7;2419:6;2408:9;2404:22;2383:53;;;2373:63;;2344:98;2161:291;;;;;;2459:507;;;;2605:2;2593:9;2584:7;2580:23;2576:32;2573:2;;;2621:1;2618;2611:12;2573:2;2656:1;2673:53;2718:7;2709:6;2698:9;2694:22;2673:53;;;2663:63;;2635:97;2763:2;2781:61;2834:7;2825:6;2814:9;2810:22;2781:61;;;2771:71;;2742:106;2879:2;2897:53;2942:7;2933:6;2922:9;2918:22;2897:53;;;2887:63;;2858:98;2567:399;;;;;;2973:721;;;;;3137:3;3125:9;3116:7;3112:23;3108:33;3105:2;;;3154:1;3151;3144:12;3105:2;3189:1;3206:53;3251:7;3242:6;3231:9;3227:22;3206:53;;;3196:63;;3168:97;3296:2;3314:53;3359:7;3350:6;3339:9;3335:22;3314:53;;;3304:63;;3275:98;3404:2;3422:53;3467:7;3458:6;3447:9;3443:22;3422:53;;;3412:63;;3383:98;3540:2;3529:9;3525:18;3512:32;3564:18;3556:6;3553:30;3550:2;;;3596:1;3593;3586:12;3550:2;3616:62;3670:7;3661:6;3650:9;3646:22;3616:62;;;3606:72;;3491:193;3099:595;;;;;;;;3701:360;;;3819:2;3807:9;3798:7;3794:23;3790:32;3787:2;;;3835:1;3832;3825:12;3787:2;3870:1;3887:53;3932:7;3923:6;3912:9;3908:22;3887:53;;;3877:63;;3849:97;3977:2;3995:50;4037:7;4028:6;4017:9;4013:22;3995:50;;;3985:60;;3956:95;3781:280;;;;;;4068:502;;;4214:2;4202:9;4193:7;4189:23;4185:32;4182:2;;;4230:1;4227;4220:12;4182:2;4293:1;4282:9;4278:17;4265:31;4316:18;4308:6;4305:30;4302:2;;;4348:1;4345;4338:12;4302:2;4368:78;4438:7;4429:6;4418:9;4414:22;4368:78;;;4358:88;;4244:208;4483:2;4501:53;4546:7;4537:6;4526:9;4522:22;4501:53;;;4491:63;;4462:98;4176:394;;;;;;4577:470;;;4707:2;4695:9;4686:7;4682:23;4678:32;4675:2;;;4723:1;4720;4713:12;4675:2;4758:1;4775:53;4820:7;4811:6;4800:9;4796:22;4775:53;;;4765:63;;4737:97;4893:2;4882:9;4878:18;4865:32;4917:18;4909:6;4906:30;4903:2;;;4949:1;4946;4939:12;4903:2;4969:62;5023:7;5014:6;5003:9;4999:22;4969:62;;;4959:72;;4844:193;4669:378;;;;;;5054:241;;5158:2;5146:9;5137:7;5133:23;5129:32;5126:2;;;5174:1;5171;5164:12;5126:2;5209:1;5226:53;5271:7;5262:6;5251:9;5247:22;5226:53;;;5216:63;;5188:97;5120:175;;;;;5302:120;5385:31;5410:5;5385:31;;;5380:3;5373:44;5367:55;;;5429:159;5530:52;5550:31;5575:5;5550:31;;;5530:52;;;5525:3;5518:65;5512:76;;;5595:111;5672:28;5694:5;5672:28;;;5667:3;5660:41;5654:52;;;5713:120;5796:31;5821:5;5796:31;;;5791:3;5784:44;5778:55;;;5840:159;5941:52;5961:31;5986:5;5961:31;;;5941:52;;;5936:3;5929:65;5923:76;;;6006:335;;6112:34;6140:5;6112:34;;;6158:70;6221:6;6216:3;6158:70;;;6151:77;;6233:52;6278:6;6273:3;6266:4;6259:5;6255:16;6233:52;;;6306:29;6328:6;6306:29;;;6301:3;6297:39;6290:46;;6092:249;;;;;;6371:818;;6488:5;6482:12;6522:1;6511:9;6507:17;6535:1;6530:247;;;;6788:1;6783:400;;;;6500:683;;6530:247;6608:4;6604:1;6593:9;6589:17;6585:28;6627:70;6690:6;6685:3;6627:70;;;6620:77;;6735:4;6731:9;6720;6716:25;6711:3;6704:38;6765:4;6760:3;6756:14;6749:21;;6537:240;6530:247;;6783:400;6852:1;6841:9;6837:17;6868:70;6931:6;6926:3;6868:70;;;6861:77;;6960:37;6991:5;6960:37;;;7013:1;7021:130;7035:6;7032:1;7029:13;7021:130;;;7100:7;7094:14;7090:1;7085:3;7081:11;7074:35;7141:1;7132:7;7128:15;7117:26;;7057:4;7054:1;7050:12;7045:17;;7021:130;;;7174:1;7169:3;7165:11;7158:18;;6790:393;;;6500:683;;6458:731;;;;;;7197:339;;7305:35;7334:5;7305:35;;;7352:71;7416:6;7411:3;7352:71;;;7345:78;;7428:52;7473:6;7468:3;7461:4;7454:5;7450:16;7428:52;;;7501:29;7523:6;7501:29;;;7496:3;7492:39;7485:46;;7285:251;;;;;;7544:400;;7722:85;7804:2;7799:3;7722:85;;;7715:92;;7840:66;7836:1;7831:3;7827:11;7820:87;7935:2;7930:3;7926:12;7919:19;;7708:236;;;;7953:364;;8113:67;8177:2;8172:3;8113:67;;;8106:74;;8213:66;8209:1;8204:3;8200:11;8193:87;8308:2;8303:3;8299:12;8292:19;;8099:218;;;;8326:364;;8486:67;8550:2;8545:3;8486:67;;;8479:74;;8586:66;8582:1;8577:3;8573:11;8566:87;8681:2;8676:3;8672:12;8665:19;;8472:218;;;;8699:465;;8859:67;8923:2;8918:3;8859:67;;;8852:74;;8959:66;8955:1;8950:3;8946:11;8939:87;9060:66;9055:2;9050:3;9046:12;9039:88;9155:2;9150:3;9146:12;9139:19;;8845:319;;;;9173:364;;9333:67;9397:2;9392:3;9333:67;;;9326:74;;9433:66;9429:1;9424:3;9420:11;9413:87;9528:2;9523:3;9519:12;9512:19;;9319:218;;;;9546:364;;9706:67;9770:2;9765:3;9706:67;;;9699:74;;9806:66;9802:1;9797:3;9793:11;9786:87;9901:2;9896:3;9892:12;9885:19;;9692:218;;;;9919:364;;10079:67;10143:2;10138:3;10079:67;;;10072:74;;10179:66;10175:1;10170:3;10166:11;10159:87;10274:2;10269:3;10265:12;10258:19;;10065:218;;;;10292:364;;10452:67;10516:2;10511:3;10452:67;;;10445:74;;10552:66;10548:1;10543:3;10539:11;10532:87;10647:2;10642:3;10638:12;10631:19;;10438:218;;;;10665:364;;10825:67;10889:2;10884:3;10825:67;;;10818:74;;10925:66;10921:1;10916:3;10912:11;10905:87;11020:2;11015:3;11011:12;11004:19;;10811:218;;;;11038:501;;11216:85;11298:2;11293:3;11216:85;;;11209:92;;11334:66;11330:1;11325:3;11321:11;11314:87;11435:66;11430:2;11425:3;11421:12;11414:88;11530:2;11525:3;11521:12;11514:19;;11202:337;;;;11548:465;;11708:67;11772:2;11767:3;11708:67;;;11701:74;;11808:66;11804:1;11799:3;11795:11;11788:87;11909:66;11904:2;11899:3;11895:12;11888:88;12004:2;11999:3;11995:12;11988:19;;11694:319;;;;12022:465;;12182:67;12246:2;12241:3;12182:67;;;12175:74;;12282:66;12278:1;12273:3;12269:11;12262:87;12383:66;12378:2;12373:3;12369:12;12362:88;12478:2;12473:3;12469:12;12462:19;;12168:319;;;;12496:364;;12656:67;12720:2;12715:3;12656:67;;;12649:74;;12756:66;12752:1;12747:3;12743:11;12736:87;12851:2;12846:3;12842:12;12835:19;;12642:218;;;;12869:364;;13029:67;13093:2;13088:3;13029:67;;;13022:74;;13129:66;13125:1;13120:3;13116:11;13109:87;13224:2;13219:3;13215:12;13208:19;;13015:218;;;;13241:155;13340:50;13359:30;13383:5;13359:30;;;13340:50;;;13335:3;13328:63;13322:74;;;13403:120;13486:31;13511:5;13486:31;;;13481:3;13474:44;13468:55;;;13530:114;13609:29;13632:5;13609:29;;;13604:3;13597:42;13591:53;;;13651:784;;13932:148;14076:3;13932:148;;;13925:155;;14091:75;14162:3;14153:6;14091:75;;;14188:2;14183:3;14179:12;14172:19;;14202:75;14273:3;14264:6;14202:75;;;14299:2;14294:3;14290:12;14283:19;;14313:73;14382:3;14373:6;14313:73;;;14408:1;14403:3;14399:11;14392:18;;14427:3;14420:10;;13913:522;;;;;;;14442:372;;14641:148;14785:3;14641:148;;;14634:155;;14806:3;14799:10;;14622:192;;;;14821:213;;14939:2;14928:9;14924:18;14916:26;;14953:71;15021:1;15010:9;15006:17;14997:6;14953:71;;;14910:124;;;;;15041:435;;15215:2;15204:9;15200:18;15192:26;;15229:71;15297:1;15286:9;15282:17;15273:6;15229:71;;;15311:72;15379:2;15368:9;15364:18;15355:6;15311:72;;;15394;15462:2;15451:9;15447:18;15438:6;15394:72;;;15186:290;;;;;;;15483:324;;15629:2;15618:9;15614:18;15606:26;;15643:71;15711:1;15700:9;15696:17;15687:6;15643:71;;;15725:72;15793:2;15782:9;15778:18;15769:6;15725:72;;;15600:207;;;;;;15814:201;;15926:2;15915:9;15911:18;15903:26;;15940:65;16002:1;15991:9;15987:17;15978:6;15940:65;;;15897:118;;;;;16022:213;;16140:2;16129:9;16125:18;16117:26;;16154:71;16222:1;16211:9;16207:17;16198:6;16154:71;;;16111:124;;;;;16242:539;;16440:3;16429:9;16425:19;16417:27;;16455:71;16523:1;16512:9;16508:17;16499:6;16455:71;;;16537:68;16601:2;16590:9;16586:18;16577:6;16537:68;;;16616:72;16684:2;16673:9;16669:18;16660:6;16616:72;;;16699;16767:2;16756:9;16752:18;16743:6;16699:72;;;16411:370;;;;;;;;16788:289;;16920:2;16909:9;16905:18;16897:26;;16970:9;16964:4;16960:20;16956:1;16945:9;16941:17;16934:47;16995:72;17062:4;17053:6;16995:72;;;16987:80;;16891:186;;;;;17084:293;;17218:2;17207:9;17203:18;17195:26;;17268:9;17262:4;17258:20;17254:1;17243:9;17239:17;17232:47;17293:74;17362:4;17353:6;17293:74;;;17285:82;;17189:188;;;;;17384:407;;17575:2;17564:9;17560:18;17552:26;;17625:9;17619:4;17615:20;17611:1;17600:9;17596:17;17589:47;17650:131;17776:4;17650:131;;;17642:139;;17546:245;;;;17798:407;;17989:2;17978:9;17974:18;17966:26;;18039:9;18033:4;18029:20;18025:1;18014:9;18010:17;18003:47;18064:131;18190:4;18064:131;;;18056:139;;17960:245;;;;18212:407;;18403:2;18392:9;18388:18;18380:26;;18453:9;18447:4;18443:20;18439:1;18428:9;18424:17;18417:47;18478:131;18604:4;18478:131;;;18470:139;;18374:245;;;;18626:407;;18817:2;18806:9;18802:18;18794:26;;18867:9;18861:4;18857:20;18853:1;18842:9;18838:17;18831:47;18892:131;19018:4;18892:131;;;18884:139;;18788:245;;;;19040:407;;19231:2;19220:9;19216:18;19208:26;;19281:9;19275:4;19271:20;19267:1;19256:9;19252:17;19245:47;19306:131;19432:4;19306:131;;;19298:139;;19202:245;;;;19454:407;;19645:2;19634:9;19630:18;19622:26;;19695:9;19689:4;19685:20;19681:1;19670:9;19666:17;19659:47;19720:131;19846:4;19720:131;;;19712:139;;19616:245;;;;19868:407;;20059:2;20048:9;20044:18;20036:26;;20109:9;20103:4;20099:20;20095:1;20084:9;20080:17;20073:47;20134:131;20260:4;20134:131;;;20126:139;;20030:245;;;;20282:407;;20473:2;20462:9;20458:18;20450:26;;20523:9;20517:4;20513:20;20509:1;20498:9;20494:17;20487:47;20548:131;20674:4;20548:131;;;20540:139;;20444:245;;;;20696:407;;20887:2;20876:9;20872:18;20864:26;;20937:9;20931:4;20927:20;20923:1;20912:9;20908:17;20901:47;20962:131;21088:4;20962:131;;;20954:139;;20858:245;;;;21110:407;;21301:2;21290:9;21286:18;21278:26;;21351:9;21345:4;21341:20;21337:1;21326:9;21322:17;21315:47;21376:131;21502:4;21376:131;;;21368:139;;21272:245;;;;21524:407;;21715:2;21704:9;21700:18;21692:26;;21765:9;21759:4;21755:20;21751:1;21740:9;21736:17;21729:47;21790:131;21916:4;21790:131;;;21782:139;;21686:245;;;;21938:407;;22129:2;22118:9;22114:18;22106:26;;22179:9;22173:4;22169:20;22165:1;22154:9;22150:17;22143:47;22204:131;22330:4;22204:131;;;22196:139;;22100:245;;;;22352:213;;22470:2;22459:9;22455:18;22447:26;;22484:71;22552:1;22541:9;22537:17;22528:6;22484:71;;;22441:124;;;;;22572:402;;22733:2;22722:9;22718:18;22710:26;;22747:71;22815:1;22804:9;22800:17;22791:6;22747:71;;;22866:9;22860:4;22856:20;22851:2;22840:9;22836:18;22829:48;22891:73;22959:4;22950:6;22891:73;;;22883:81;;22704:270;;;;;;22981:256;;23043:2;23037:9;23027:19;;23081:4;23073:6;23069:17;23180:6;23168:10;23165:22;23144:18;23132:10;23129:34;23126:62;23123:2;;;23201:1;23198;23191:12;23123:2;23221:10;23217:2;23210:22;23021:216;;;;;23244:258;;23403:18;23395:6;23392:30;23389:2;;;23435:1;23432;23425:12;23389:2;23464:4;23456:6;23452:17;23444:25;;23492:4;23486;23482:15;23474:23;;23326:176;;;;23509:258;;23652:18;23644:6;23641:30;23638:2;;;23684:1;23681;23674:12;23638:2;23728:4;23724:9;23717:4;23709:6;23705:17;23701:33;23693:41;;23757:4;23751;23747:15;23739:23;;23575:192;;;;23776:125;;23852:4;23849:1;23842:15;23889:4;23886:1;23876:18;23864:30;;23834:67;;;;23910:87;;23986:5;23980:12;23970:22;;23964:33;;;;24004:88;;24081:5;24075:12;24065:22;;24059:33;;;;24100:162;;24214:6;24209:3;24202:19;24251:4;24246:3;24242:14;24227:29;;24195:67;;;;;24271:163;;24386:6;24381:3;24374:19;24423:4;24418:3;24414:14;24399:29;;24367:67;;;;;24443:145;;24579:3;24564:18;;24557:31;;;;;24596:105;;24665:31;24690:5;24665:31;;;24654:42;;24648:53;;;;24708:92;;24788:5;24781:13;24774:21;24763:32;;24757:43;;;;24807:79;;24876:5;24865:16;;24859:27;;;;24893:91;;24972:6;24965:5;24961:18;24950:29;;24944:40;;;;24991:128;;25071:42;25064:5;25060:54;25049:65;;25043:76;;;;25126:79;;25195:5;25184:16;;25178:27;;;;25212:88;;25290:4;25283:5;25279:16;25268:27;;25262:38;;;;25307:105;;25376:31;25401:5;25376:31;;;25365:42;;25359:53;;;;25419:113;;25496:31;25521:5;25496:31;;;25485:42;;25479:53;;;;25539:92;;25619:5;25612:13;25605:21;25594:32;;25588:43;;;;25638:79;;25707:5;25696:16;;25690:27;;;;25724:128;;25804:42;25797:5;25793:54;25782:65;;25776:76;;;;25859:79;;25928:5;25917:16;;25911:27;;;;25946:145;26027:6;26022:3;26017;26004:30;26083:1;26074:6;26069:3;26065:16;26058:27;25997:94;;;;26100:268;26165:1;26172:101;26186:6;26183:1;26180:13;26172:101;;;26262:1;26257:3;26253:11;26247:18;26243:1;26238:3;26234:11;26227:39;26208:2;26205:1;26201:10;26196:15;;26172:101;;;26288:6;26285:1;26282:13;26279:2;;;26353:1;26344:6;26339:3;26335:16;26328:27;26279:2;26149:219;;;;;26376:95;;26440:26;26460:5;26440:26;;;26429:37;;26423:48;;;;26478:74;;26542:5;26531:16;;26525:27;;;;26559:89;;26622:21;26637:5;26622:21;;;26611:32;;26605:43;;;;26655:89;;26719:20;26733:5;26719:20;;;26708:31;;26702:42;;;;26751:97;;26839:2;26835:7;26830:2;26823:5;26819:14;26815:28;26805:38;;26799:49;;;;26857:83;;26928:5;26923:3;26919:15;26907:27;;26900:40;;;;26950:81;;27019:5;27015:2;27011:14;26999:26;;26992:39;;;

Swarm Source

bzzr://507337e52571e1b3d426291158152b62ce8f834c6fdb80d0e05b331a4c3049d9

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.